gpt4 book ai didi

c# - 在 CodeBehind 上使用 XAML 样式

转载 作者:行者123 更新时间:2023-11-30 20:24:59 25 4
gpt4 key购买 nike

伙计们我正在尝试将 Style.xaml 中的样式用于我后面的代码按照我的风格,我有这样的代码

文件样式.xaml

<SolidColorBrush x:Key="FontGrey" Color="#FFC5C0C0"></SolidColorBrush>  

在我的 Apptest.xaml.cs 文件中有这样的代码

txt.Foreground =  new SolidColorBrush(Color.FromArgb(255, 252, 147, 25));

如果我想根据 style.xaml 更改我的前景色我怎样才能做到这一点?我正在尝试使用资源,但它不起作用

注意:Style.xaml 和 Apptest.xaml 是分开的

最佳答案

您可以使用以下语法在 Silverlight 中访问您定义的资源:

txt.Foreground = (SolidColorBrush)Application.Current.Resources["FontGrey"];

关于c# - 在 CodeBehind 上使用 XAML 样式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25321307/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com