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

MVVM 模版里的控件怎样触发命令

时间:2015-01-18 15:32:32      阅读:181      评论:0      收藏:0      [点我收藏+]

标签:

 1 public class BaseWindow : Window
 2     {
 3         public BaseWindow()
 4         {
 5             InitializeStyle();

                  //给样式的控件加载事件
6 this.Loaded += delegate 7 { 8 InitializeEvent(); 9 }; 10 } 11 12 private void InitializeEvent() 13 { 14 ControlTemplate baseWindowTemplate = (ControlTemplate)App.Current.Resources["BaseWindowControlTemplate"]; 15 16 Button minBtn = (Button)baseWindowTemplate.FindName("btnMin", this); 17 minBtn.Click += delegate 18 { 19 this.WindowState = WindowState.Minimized; 20 }; 21 22 Button maxBtn = (Button)baseWindowTemplate.FindName("btnMax", this); 23 maxBtn.Click += delegate 24 { 25 this.WindowState = (this.WindowState == WindowState.Normal ? WindowState.Maximized : WindowState.Normal); 26 }; 27 28 Button closeBtn = (Button)baseWindowTemplate.FindName("btnClose", this); 29 closeBtn.Click += delegate 30 { 31 this.Close(); 32 }; 33 34 Border borderTitle = (Border)baseWindowTemplate.FindName("borderTitle", this); 35 borderTitle.MouseMove += delegate(object sender, MouseEventArgs e) 36 { 37 if (e.LeftButton == MouseButtonState.Pressed) 38 { 39 this.DragMove(); 40 } 41 }; 42 borderTitle.MouseLeftButtonDown += delegate(object sender, MouseButtonEventArgs e) 43 { 44 if (e.ClickCount >= 2) 45 { 46 maxBtn.RaiseEvent(new RoutedEventArgs(Button.ClickEvent)); 47 } 48 }; 49 } 50 51 52 private void InitializeStyle() 53 { 54 this.Style = (Style) App.Current.Resources["BaseWindowStyle"]; 55 } 56 }

 

MVVM 模版里的控件怎样触发命令

标签:

原文地址:http://www.cnblogs.com/qq247039968/p/4231767.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!