码迷,mamicode.com
首页 > 其他好文 > 详细

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

时间:2015-01-17 23:30:43      阅读:235      评论: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
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!