SleepAndWakeUpForm.Designer.cs 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899
  1. namespace AGV_WPF
  2. {
  3. partial class SleepAndWakeUpForm
  4. {
  5. /// <summary>
  6. /// Required designer variable.
  7. /// </summary>
  8. private System.ComponentModel.IContainer components = null;
  9. /// <summary>
  10. /// Clean up any resources being used.
  11. /// </summary>
  12. /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
  13. protected override void Dispose(bool disposing)
  14. {
  15. if (disposing && (components != null))
  16. {
  17. components.Dispose();
  18. }
  19. base.Dispose(disposing);
  20. }
  21. #region Windows Form Designer generated code
  22. /// <summary>
  23. /// Required method for Designer support - do not modify
  24. /// the contents of this method with the code editor.
  25. /// </summary>
  26. private void InitializeComponent()
  27. {
  28. this.components = new System.ComponentModel.Container();
  29. this.timer1 = new System.Windows.Forms.Timer(this.components);
  30. this.label1 = new System.Windows.Forms.Label();
  31. this.textBox1 = new System.Windows.Forms.TextBox();
  32. this.button1 = new System.Windows.Forms.Button();
  33. this.SuspendLayout();
  34. //
  35. // timer1
  36. //
  37. this.timer1.Enabled = true;
  38. this.timer1.Interval = 500;
  39. //
  40. // label1
  41. //
  42. this.label1.AutoSize = true;
  43. this.label1.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  44. this.label1.Location = new System.Drawing.Point(22, 24);
  45. this.label1.Name = "label1";
  46. this.label1.Size = new System.Drawing.Size(233, 16);
  47. this.label1.TabIndex = 0;
  48. this.label1.Text = "以下AGV未 key 成功,请重试";
  49. //
  50. // textBox1
  51. //
  52. this.textBox1.Font = new System.Drawing.Font("Arial", 9F);
  53. this.textBox1.Location = new System.Drawing.Point(25, 56);
  54. this.textBox1.Multiline = true;
  55. this.textBox1.Name = "textBox1";
  56. this.textBox1.ReadOnly = true;
  57. this.textBox1.ScrollBars = System.Windows.Forms.ScrollBars.Both;
  58. this.textBox1.Size = new System.Drawing.Size(289, 133);
  59. this.textBox1.TabIndex = 1;
  60. //
  61. // button1
  62. //
  63. this.button1.Location = new System.Drawing.Point(262, 21);
  64. this.button1.Name = "button1";
  65. this.button1.Size = new System.Drawing.Size(75, 23);
  66. this.button1.TabIndex = 2;
  67. this.button1.Text = "重试";
  68. this.button1.UseVisualStyleBackColor = true;
  69. this.button1.Click += new System.EventHandler(this.button1_Click);
  70. //
  71. // SleepAndWakeUpForm
  72. //
  73. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
  74. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  75. this.ClientSize = new System.Drawing.Size(349, 201);
  76. this.Controls.Add(this.button1);
  77. this.Controls.Add(this.textBox1);
  78. this.Controls.Add(this.label1);
  79. this.MaximizeBox = false;
  80. this.MinimizeBox = false;
  81. this.Name = "SleepAndWakeUpForm";
  82. this.Text = "AGV休眠/唤醒";
  83. this.Load += new System.EventHandler(this.SleepAndWakeUpForm_Load);
  84. this.ResumeLayout(false);
  85. this.PerformLayout();
  86. }
  87. #endregion
  88. private System.Windows.Forms.Timer timer1;
  89. private System.Windows.Forms.Label label1;
  90. private System.Windows.Forms.TextBox textBox1;
  91. private System.Windows.Forms.Button button1;
  92. }
  93. }