DlgStageRename.Designer.cs 3.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. namespace OTSModelSharp.Measure.GetStageInfo
  2. {
  3. partial class DlgStageRename
  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.tbEditStageName = new System.Windows.Forms.TextBox();
  29. this.button1 = new System.Windows.Forms.Button();
  30. this.button2 = new System.Windows.Forms.Button();
  31. this.SuspendLayout();
  32. //
  33. // tbEditStageName
  34. //
  35. this.tbEditStageName.Location = new System.Drawing.Point(12, 12);
  36. this.tbEditStageName.Name = "tbEditStageName";
  37. this.tbEditStageName.Size = new System.Drawing.Size(422, 21);
  38. this.tbEditStageName.TabIndex = 0;
  39. this.tbEditStageName.TextChanged += new System.EventHandler(this.OnChangeEditName);
  40. //
  41. // button1
  42. //
  43. this.button1.Location = new System.Drawing.Point(273, 39);
  44. this.button1.Name = "button1";
  45. this.button1.Size = new System.Drawing.Size(75, 23);
  46. this.button1.TabIndex = 1;
  47. this.button1.Text = "确定";
  48. this.button1.UseVisualStyleBackColor = true;
  49. this.button1.Click += new System.EventHandler(this.OnBnClickedOk);
  50. //
  51. // button2
  52. //
  53. this.button2.Location = new System.Drawing.Point(354, 39);
  54. this.button2.Name = "button2";
  55. this.button2.Size = new System.Drawing.Size(75, 23);
  56. this.button2.TabIndex = 2;
  57. this.button2.Text = "取消";
  58. this.button2.UseVisualStyleBackColor = true;
  59. this.button2.Click += new System.EventHandler(this.OnBnClickedCancel);
  60. //
  61. // DlgStageRename
  62. //
  63. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
  64. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  65. this.ClientSize = new System.Drawing.Size(441, 67);
  66. this.Controls.Add(this.button2);
  67. this.Controls.Add(this.button1);
  68. this.Controls.Add(this.tbEditStageName);
  69. this.MaximizeBox = false;
  70. this.MaximumSize = new System.Drawing.Size(457, 106);
  71. this.MinimizeBox = false;
  72. this.MinimumSize = new System.Drawing.Size(457, 106);
  73. this.Name = "DlgStageRename";
  74. this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
  75. this.Text = "样品台重命名";
  76. this.Load += new System.EventHandler(this.DlgStageRename_Load);
  77. this.ResumeLayout(false);
  78. this.PerformLayout();
  79. }
  80. #endregion
  81. private System.Windows.Forms.TextBox tbEditStageName;
  82. private System.Windows.Forms.Button button1;
  83. private System.Windows.Forms.Button button2;
  84. }
  85. }