UserControl9.Designer.cs 2.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. 
  2. namespace IMCS.UControl
  3. {
  4. partial class UserControl9
  5. {
  6. /// <summary>
  7. /// 必需的设计器变量。
  8. /// </summary>
  9. private System.ComponentModel.IContainer components = null;
  10. /// <summary>
  11. /// 清理所有正在使用的资源。
  12. /// </summary>
  13. /// <param name="disposing">如果应释放托管资源,为 true;否则为 false。</param>
  14. protected override void Dispose(bool disposing)
  15. {
  16. if (disposing && (components != null))
  17. {
  18. components.Dispose();
  19. }
  20. base.Dispose(disposing);
  21. }
  22. #region 组件设计器生成的代码
  23. /// <summary>
  24. /// 设计器支持所需的方法 - 不要修改
  25. /// 使用代码编辑器修改此方法的内容。
  26. /// </summary>
  27. private void InitializeComponent()
  28. {
  29. this.button1 = new System.Windows.Forms.Button();
  30. this.textBox1 = new System.Windows.Forms.TextBox();
  31. this.label1 = new System.Windows.Forms.Label();
  32. this.SuspendLayout();
  33. //
  34. // button1
  35. //
  36. this.button1.Location = new System.Drawing.Point(511, 116);
  37. this.button1.Name = "button1";
  38. this.button1.Size = new System.Drawing.Size(75, 23);
  39. this.button1.TabIndex = 0;
  40. this.button1.Text = "执行";
  41. this.button1.UseVisualStyleBackColor = true;
  42. this.button1.Click += new System.EventHandler(this.button1_Click);
  43. //
  44. // textBox1
  45. //
  46. this.textBox1.Location = new System.Drawing.Point(362, 114);
  47. this.textBox1.Name = "textBox1";
  48. this.textBox1.Size = new System.Drawing.Size(100, 25);
  49. this.textBox1.TabIndex = 1;
  50. //
  51. // label1
  52. //
  53. this.label1.AutoSize = true;
  54. this.label1.Location = new System.Drawing.Point(233, 124);
  55. this.label1.Name = "label1";
  56. this.label1.Size = new System.Drawing.Size(112, 15);
  57. this.label1.TabIndex = 2;
  58. this.label1.Text = "移动到目标位置";
  59. //
  60. // UserControl9
  61. //
  62. this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 15F);
  63. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  64. this.Controls.Add(this.label1);
  65. this.Controls.Add(this.textBox1);
  66. this.Controls.Add(this.button1);
  67. this.Name = "UserControl9";
  68. this.Size = new System.Drawing.Size(1114, 616);
  69. this.ResumeLayout(false);
  70. this.PerformLayout();
  71. }
  72. #endregion
  73. private System.Windows.Forms.Button button1;
  74. private System.Windows.Forms.TextBox textBox1;
  75. private System.Windows.Forms.Label label1;
  76. }
  77. }