AGVSingleControl.Designer.cs 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116
  1. namespace AGV_WPF
  2. {
  3. partial class AGVSingleControl
  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.label1 = new System.Windows.Forms.Label();
  29. this.comboBox1 = new System.Windows.Forms.ComboBox();
  30. this.comboBox2 = new System.Windows.Forms.ComboBox();
  31. this.label2 = new System.Windows.Forms.Label();
  32. this.button1 = new System.Windows.Forms.Button();
  33. this.SuspendLayout();
  34. //
  35. // label1
  36. //
  37. this.label1.AutoSize = true;
  38. this.label1.Font = new System.Drawing.Font("宋体", 12F);
  39. this.label1.Location = new System.Drawing.Point(23, 84);
  40. this.label1.Name = "label1";
  41. this.label1.Size = new System.Drawing.Size(72, 16);
  42. this.label1.TabIndex = 0;
  43. this.label1.Text = "选择操作";
  44. //
  45. // comboBox1
  46. //
  47. this.comboBox1.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
  48. this.comboBox1.Font = new System.Drawing.Font("宋体", 12F);
  49. this.comboBox1.FormattingEnabled = true;
  50. this.comboBox1.Location = new System.Drawing.Point(101, 81);
  51. this.comboBox1.Name = "comboBox1";
  52. this.comboBox1.Size = new System.Drawing.Size(121, 24);
  53. this.comboBox1.TabIndex = 1;
  54. //
  55. // comboBox2
  56. //
  57. this.comboBox2.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
  58. this.comboBox2.Font = new System.Drawing.Font("宋体", 12F);
  59. this.comboBox2.FormattingEnabled = true;
  60. this.comboBox2.Location = new System.Drawing.Point(101, 24);
  61. this.comboBox2.Name = "comboBox2";
  62. this.comboBox2.Size = new System.Drawing.Size(121, 24);
  63. this.comboBox2.TabIndex = 3;
  64. //
  65. // label2
  66. //
  67. this.label2.AutoSize = true;
  68. this.label2.Font = new System.Drawing.Font("宋体", 12F);
  69. this.label2.Location = new System.Drawing.Point(23, 27);
  70. this.label2.Name = "label2";
  71. this.label2.Size = new System.Drawing.Size(64, 16);
  72. this.label2.TabIndex = 2;
  73. this.label2.Text = "选择AGV";
  74. //
  75. // button1
  76. //
  77. this.button1.Font = new System.Drawing.Font("宋体", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  78. this.button1.Location = new System.Drawing.Point(256, 37);
  79. this.button1.Name = "button1";
  80. this.button1.Size = new System.Drawing.Size(110, 63);
  81. this.button1.TabIndex = 4;
  82. this.button1.Text = "确定";
  83. this.button1.UseVisualStyleBackColor = true;
  84. this.button1.Click += new System.EventHandler(this.button1_Click);
  85. //
  86. // AGVSingleControl
  87. //
  88. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
  89. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  90. this.ClientSize = new System.Drawing.Size(399, 135);
  91. this.Controls.Add(this.button1);
  92. this.Controls.Add(this.comboBox2);
  93. this.Controls.Add(this.label2);
  94. this.Controls.Add(this.comboBox1);
  95. this.Controls.Add(this.label1);
  96. this.Name = "AGVSingleControl";
  97. this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
  98. this.Text = "AGV单台控制";
  99. this.Load += new System.EventHandler(this.AGVSingleControl_Load);
  100. this.ResumeLayout(false);
  101. this.PerformLayout();
  102. }
  103. #endregion
  104. private System.Windows.Forms.Label label1;
  105. private System.Windows.Forms.ComboBox comboBox1;
  106. private System.Windows.Forms.ComboBox comboBox2;
  107. private System.Windows.Forms.Label label2;
  108. private System.Windows.Forms.Button button1;
  109. }
  110. }