首页 > Web开发 > 详细

Silverlight C#动态设置样式

时间:2014-07-29 13:36:28      阅读:369      评论:0      收藏:0      [点我收藏+]

1.从页面资源中获取样式并应用

btnTest.Style = (Style)this.Resources["BigButtonStyle"]

2.从项目中单独分开的资源字典文件(或一个引用的程序集中)中获取样式。

首先,需要创建一个ResourceDictionary对象并提供正确的URI:

ResourceDictionary dictionary = new ResourceDictionary(); dictionary.Source = new Uri("/Test.xaml",UriKind.Relative);

假设样式字典的名字叫Test.xaml,资源字典的编译格式必须为内容(将属性窗口的Build Action设置为Content)。

在配置好ResourceDictionary后,就可以从获取样式并应用它:  btnTest.Style = (Style)dictionary["SmallButtonStyle"];

3.移除样式

最后,要想移除样式,设置Style属性为空就可以。

btnTest.Style = null

Silverlight C#动态设置样式,布布扣,bubuko.com

Silverlight C#动态设置样式

原文:http://www.cnblogs.com/zxbzl/p/3874924.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!