WPF如何在C#代码中引用资源字典中的样式?

WPF如何在C#代码中引用资源字典中的样式?,第1张

首先在页面里合并资源字典,放在<Window.Resources>或<Page.Resources>

<ResourceDictionary>

<ResourceDictionary.MergedDictionaries>

<ResourceDictionary Source="资源字典名.xaml"/>

</ResourceDictionary.MergedDictionaries>

</ResourceDictionary>

然后在后台指定即可。

控件名.Style = Resources["样式的Key"] as Style

只要在App.xaml里面添加字典的时候按先后顺序就可以了

<Application.Resources>

        <ResourceDictionary>

            <ResourceDictionary.MergedDictionaries>

                <ResourceDictionary Source="Skin/BrushResources.xaml"/>

                <ResourceDictionary Source="Skin/ImageResources.xaml"/>

                <ResourceDictionary Source="Skin/AppResources.xaml"/>

            </ResourceDictionary.MergedDictionaries>

        </ResourceDictionary>

    </Application.Resources>

如上述代码所示,AppResources.xaml里面用到BrushResources.xaml里面的资源


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/bake/11820507.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-05-18
下一篇 2023-05-18

发表评论

登录后才能评论

评论列表(0条)

保存