MachineStateForm.cs 850 B

1234567891011121314151617181920212223242526272829303132333435
  1. using PlcUiControl;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.ComponentModel;
  5. using System.Data;
  6. using System.Drawing;
  7. using System.Linq;
  8. using System.Text;
  9. using System.Threading.Tasks;
  10. using System.Windows.Forms;
  11. using PlcUiForm;
  12. namespace YangjieTester.设备状态
  13. {
  14. [FormDescriptionAttribute("设备状态")]
  15. public partial class MachineStateForm : PlcBaseForm
  16. {
  17. public MachineStateForm()
  18. {
  19. InitializeComponent();
  20. }
  21. private void InitializeComponent()
  22. {
  23. this.SuspendLayout();
  24. //
  25. // MachineStateForm
  26. //
  27. this.ClientSize = new System.Drawing.Size(1440, 900);
  28. this.Name = "MachineStateForm";
  29. this.Text = "设备状态";
  30. this.ResumeLayout(false);
  31. }
  32. }
  33. }