當前位置:成語大全網 - 英語詞典 - Csharp中Wpf窗體裏面的資源詞典如何使用?

Csharp中Wpf窗體裏面的資源詞典如何使用?

1、添加壹個目錄存放資源字典(這壹步不是必須的,如果不添加,修改後續步驟的路徑即可),比如叫“Dictionary”;

2、在目錄中添加資源字典,名稱隨意,比如叫"Style.xaml";

3、修改App.xaml,添加資源字典路徑,修改後的文件如下:

<Application x:Class="Test.App" xmlns="/winfx/2006/xaml/presentation" xmlns:x="/winfx/2006/xaml">

<Application.Resources>

<ResourceDictionary>

<ResourceDictionary.MergedDictionaries>

<ResourceDictionary Source="Dictionary\Style.xaml"/>

</ResourceDictionary.MergedDictionaries>

</ResourceDictionary>

</Application.Resources>

</Application>

4、現在可以在妳的項目中引用Style這個資源字典中的資源了,使用動態和靜態資源都可以,還需要添加其它字典時重復步驟2、3即可,下面是引用資源字典中iButton這個樣式的代碼示例:

<Button Style="{StaticResource iButton}"/>

基本就是這樣了,希望對妳有幫助,還有疑問請追問或是Hi