如何访问的ResourceDictionary在WPF从C#code
1个回答
展开全部
新建一个WPF Application,在Application中添加一个New Item,选择ResourceDictionary。
譬如,命名为Brushes.xaml,我们用它来存放一些笔刷。打开,我们添加一个笔刷如下:
Brushes.xaml:
<ResourceDictionary xmlns=""
xmlns:x="">
2.在App.xaml中Merge则个Resource。
“Open App.xaml. We need to merge external resource dictionaries into the main
application dictionary.”
打开App.xaml,添加如下内容:
<Application x:Class="ManagingLogicalResources.App"
xmlns=""
xmlns:x=""
StartupUri="MainWindow.xaml">
3.这样我们就可以在页面中正常使用了。
<Window x:Class="ManagingLogicalResources.MainWindow"
xmlns=""
xmlns:x=""
Title="MainWindow" Height="350" Width="525">
-----------------------------------
在实际开发中更常用的做法是:直接在使用的View内部Merge。
譬如,命名为Brushes.xaml,我们用它来存放一些笔刷。打开,我们添加一个笔刷如下:
Brushes.xaml:
<ResourceDictionary xmlns=""
xmlns:x="">
2.在App.xaml中Merge则个Resource。
“Open App.xaml. We need to merge external resource dictionaries into the main
application dictionary.”
打开App.xaml,添加如下内容:
<Application x:Class="ManagingLogicalResources.App"
xmlns=""
xmlns:x=""
StartupUri="MainWindow.xaml">
3.这样我们就可以在页面中正常使用了。
<Window x:Class="ManagingLogicalResources.MainWindow"
xmlns=""
xmlns:x=""
Title="MainWindow" Height="350" Width="525">
-----------------------------------
在实际开发中更常用的做法是:直接在使用的View内部Merge。
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询