终端一体化运控平台
25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.
 
 
 

49 satır
1.3 KiB

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. using System.Windows;
  7. using System.Windows.Controls;
  8. using System.Windows.Data;
  9. using System.Windows.Documents;
  10. using System.Windows.Input;
  11. using System.Windows.Media;
  12. using System.Windows.Media.Imaging;
  13. using System.Windows.Navigation;
  14. using System.Windows.Shapes;
  15. namespace BPASmartClient.DosingSystem.View
  16. {
  17. /// <summary>
  18. /// Interaction logic for MainWindow.xaml
  19. /// </summary>
  20. public partial class MainWindow : Window
  21. {
  22. public MainWindow()
  23. {
  24. InitializeComponent();
  25. this.ButClose.Click += (o, e) => { this.Close(); };
  26. this.MaxWidth = SystemParameters.WorkArea.Width;
  27. this.MaxHeight = SystemParameters.WorkArea.Height;
  28. this.br.MouseLeftButtonDown += (o, e) =>
  29. {
  30. if (e.ClickCount > 1)
  31. {
  32. if (this.WindowState == WindowState.Maximized)
  33. this.WindowState = WindowState.Normal;
  34. else if (this.WindowState == WindowState.Normal)
  35. this.WindowState = WindowState.Maximized;
  36. }
  37. if (e.LeftButton == MouseButtonState.Pressed) this.DragMove();
  38. };
  39. }
  40. }
  41. }