wpf中,如何引用其他xaml文件中的Resources
在其他xaml文件中设置了<Window.Resources>如何在应用资源中使用其他文件的Resources。...
在其他xaml文件中设置了<Window.Resources>
如何在应用资源中使用其他文件的Resources。 展开
如何在应用资源中使用其他文件的Resources。 展开
2个回答
展开全部
假设指定的 xaml 是一个 Window 对象,则比较简单的做法是
<Window.Resources>
<SolidColorBrush x:Key="myBrush" Color="Blue"/>
<Style x:Key="myStyle" TargetType="{x:Type Button}">
<Setter Property="Background" Value="Red"/>
</Style>
</Window.Resources>
var win = new Window1();
var brush = win.TryFindResource("myBrush") as Brush;
var style = win.Resources["myStyle"] as Style;
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询