FormAutoDo.Designer.cs 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  1. namespace AutoDo
  2. {
  3. partial class FormAutoDo
  4. {
  5. /// <summary>
  6. /// 必需的设计器变量。
  7. /// </summary>
  8. private System.ComponentModel.IContainer components = null;
  9. /// <summary>
  10. /// 清理所有正在使用的资源。
  11. /// </summary>
  12. /// <param name="disposing">如果应释放托管资源,为 true;否则为 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 窗体设计器生成的代码
  22. /// <summary>
  23. /// 设计器支持所需的方法 - 不要修改
  24. /// 使用代码编辑器修改此方法的内容。
  25. /// </summary>
  26. private void InitializeComponent()
  27. {
  28. this.button1 = new System.Windows.Forms.Button();
  29. this.button2 = new System.Windows.Forms.Button();
  30. this.tBImgPath = new System.Windows.Forms.TextBox();
  31. this.pictureBox1 = new System.Windows.Forms.PictureBox();
  32. ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
  33. this.SuspendLayout();
  34. //
  35. // button1
  36. //
  37. this.button1.Location = new System.Drawing.Point(43, 24);
  38. this.button1.Name = "button1";
  39. this.button1.Size = new System.Drawing.Size(108, 34);
  40. this.button1.TabIndex = 0;
  41. this.button1.Text = "自动对焦";
  42. this.button1.UseVisualStyleBackColor = true;
  43. this.button1.Click += new System.EventHandler(this.button1_Click);
  44. //
  45. // button2
  46. //
  47. this.button2.Location = new System.Drawing.Point(238, 24);
  48. this.button2.Name = "button2";
  49. this.button2.Size = new System.Drawing.Size(141, 34);
  50. this.button2.TabIndex = 1;
  51. this.button2.Text = "选择图像文件夹";
  52. this.button2.UseVisualStyleBackColor = true;
  53. this.button2.Click += new System.EventHandler(this.button2_Click);
  54. //
  55. // tBImgPath
  56. //
  57. this.tBImgPath.Location = new System.Drawing.Point(385, 30);
  58. this.tBImgPath.Name = "tBImgPath";
  59. this.tBImgPath.ReadOnly = true;
  60. this.tBImgPath.Size = new System.Drawing.Size(479, 28);
  61. this.tBImgPath.TabIndex = 2;
  62. //
  63. // pictureBox1
  64. //
  65. this.pictureBox1.Location = new System.Drawing.Point(43, 82);
  66. this.pictureBox1.Name = "pictureBox1";
  67. this.pictureBox1.Size = new System.Drawing.Size(535, 493);
  68. this.pictureBox1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.CenterImage;
  69. this.pictureBox1.TabIndex = 3;
  70. this.pictureBox1.TabStop = false;
  71. //
  72. // FormAutoDo
  73. //
  74. this.AutoScaleDimensions = new System.Drawing.SizeF(9F, 18F);
  75. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  76. this.ClientSize = new System.Drawing.Size(1185, 605);
  77. this.Controls.Add(this.pictureBox1);
  78. this.Controls.Add(this.tBImgPath);
  79. this.Controls.Add(this.button2);
  80. this.Controls.Add(this.button1);
  81. this.Name = "FormAutoDo";
  82. this.Text = "Form1";
  83. ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
  84. this.ResumeLayout(false);
  85. this.PerformLayout();
  86. }
  87. #endregion
  88. private System.Windows.Forms.Button button1;
  89. private System.Windows.Forms.Button button2;
  90. private System.Windows.Forms.TextBox tBImgPath;
  91. private System.Windows.Forms.PictureBox pictureBox1;
  92. }
  93. }