首页 > 其他 > 详细

从模版中找到控件的方法和找到样式的方法

时间:2015-01-17 23:29:01      阅读:311      评论:0      收藏:0      [点我收藏+]

this.Style = (Style) App.Current.Resources["BaseWindowStyle"];

运行下段代码一定要加载样式完成后

i最好是在 Loaded 事件运行完成后加载  

ControlTemplate baseWindowTemplate = (ControlTemplate)App.Current.Resources["BaseWindowControlTemplate"];

Button minBtn = (Button)baseWindowTemplate.FindName("btnMin", this);
minBtn.Click += delegate
{
this.WindowState = WindowState.Minimized;
};

从模版中找到控件的方法和找到样式的方法

原文:http://www.cnblogs.com/qq247039968/p/4231276.html

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