终端一体化运控平台
Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.
 
 
 

24 rindas
637 B

  1. using System.Windows;
  2. using System.Windows.Input;
  3. namespace BPASmartClient.FoodStationTest.View
  4. {
  5. /// <summary>
  6. /// NewMateritalView.xaml 的交互逻辑
  7. /// </summary>
  8. public partial class NewMaterialView : Window
  9. {
  10. public NewMaterialView()
  11. {
  12. InitializeComponent();
  13. this.btClose.Click += (o, e) => { this.Close(); };
  14. this.br.MouseLeftButtonDown += (o, e) => { if (e.LeftButton == MouseButtonState.Pressed) this.DragMove(); };
  15. }
  16. private void btClose_Click(object sender, RoutedEventArgs e)
  17. {
  18. this.Close();
  19. }
  20. }
  21. }