现在的位置: 首页 > 综合 > 正文

WPF Theme 主题切换. 动态变换

2013年01月30日 ⁄ 综合 ⁄ 共 343字 ⁄ 字号 评论关闭
 Application.Current.Resources.MergedDictionaries.Clear();
            ResourceDictionary resource =  (ResourceDictionary)Application.LoadComponent(
                    new Uri("/Dcet.Platform.Client.UI.WPF;component/Theme.xaml", UriKind.Relative));
            Application.Current.Resources.MergedDictionaries.Add(resource);

以C#中使用以上代码即可

 

Theme.xaml 为主题文件名

Dcet.Platform.Client.UI.WPF 为当前的动态库或者可执行程序

 

 

抱歉!评论已关闭.