AutoNumForm.Designer.cs 5.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141
  1. namespace AutoNum
  2. {
  3. partial class AutoNumForm
  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.txtPre = new System.Windows.Forms.TextBox();
  30. this.label2 = new System.Windows.Forms.Label();
  31. this.cmbLength = new System.Windows.Forms.ComboBox();
  32. this.label3 = new System.Windows.Forms.Label();
  33. this.cmdStartNum = new System.Windows.Forms.ComboBox();
  34. this.btnRun = new System.Windows.Forms.Button();
  35. this.SuspendLayout();
  36. //
  37. // label1
  38. //
  39. this.label1.AutoSize = true;
  40. this.label1.Location = new System.Drawing.Point(32, 36);
  41. this.label1.Name = "label1";
  42. this.label1.Size = new System.Drawing.Size(52, 15);
  43. this.label1.TabIndex = 0;
  44. this.label1.Text = "前缀:";
  45. //
  46. // txtPre
  47. //
  48. this.txtPre.Location = new System.Drawing.Point(90, 31);
  49. this.txtPre.Name = "txtPre";
  50. this.txtPre.Size = new System.Drawing.Size(310, 25);
  51. this.txtPre.TabIndex = 1;
  52. this.txtPre.Text = "批量编号";
  53. //
  54. // label2
  55. //
  56. this.label2.AutoSize = true;
  57. this.label2.Location = new System.Drawing.Point(32, 77);
  58. this.label2.Name = "label2";
  59. this.label2.Size = new System.Drawing.Size(52, 15);
  60. this.label2.TabIndex = 0;
  61. this.label2.Text = "位数:";
  62. //
  63. // cmbLength
  64. //
  65. this.cmbLength.FormattingEnabled = true;
  66. this.cmbLength.Items.AddRange(new object[] {
  67. "3",
  68. "2",
  69. "1"});
  70. this.cmbLength.Location = new System.Drawing.Point(90, 73);
  71. this.cmbLength.Name = "cmbLength";
  72. this.cmbLength.Size = new System.Drawing.Size(81, 23);
  73. this.cmbLength.TabIndex = 2;
  74. this.cmbLength.Text = "3";
  75. //
  76. // label3
  77. //
  78. this.label3.AutoSize = true;
  79. this.label3.Location = new System.Drawing.Point(261, 77);
  80. this.label3.Name = "label3";
  81. this.label3.Size = new System.Drawing.Size(52, 15);
  82. this.label3.TabIndex = 0;
  83. this.label3.Text = "起始:";
  84. //
  85. // cmdStartNum
  86. //
  87. this.cmdStartNum.FormattingEnabled = true;
  88. this.cmdStartNum.Items.AddRange(new object[] {
  89. "1",
  90. "0"});
  91. this.cmdStartNum.Location = new System.Drawing.Point(319, 73);
  92. this.cmdStartNum.Name = "cmdStartNum";
  93. this.cmdStartNum.Size = new System.Drawing.Size(81, 23);
  94. this.cmdStartNum.TabIndex = 2;
  95. this.cmdStartNum.Text = "1";
  96. //
  97. // btnRun
  98. //
  99. this.btnRun.Location = new System.Drawing.Point(125, 136);
  100. this.btnRun.Name = "btnRun";
  101. this.btnRun.Size = new System.Drawing.Size(177, 30);
  102. this.btnRun.TabIndex = 3;
  103. this.btnRun.Text = "开始编号";
  104. this.btnRun.UseVisualStyleBackColor = true;
  105. this.btnRun.Click += new System.EventHandler(this.btnRun_Click);
  106. //
  107. // AutoNumForm
  108. //
  109. this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 15F);
  110. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  111. this.ClientSize = new System.Drawing.Size(427, 178);
  112. this.Controls.Add(this.btnRun);
  113. this.Controls.Add(this.cmdStartNum);
  114. this.Controls.Add(this.cmbLength);
  115. this.Controls.Add(this.txtPre);
  116. this.Controls.Add(this.label3);
  117. this.Controls.Add(this.label2);
  118. this.Controls.Add(this.label1);
  119. this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow;
  120. this.Name = "AutoNumForm";
  121. this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
  122. this.Text = "CAD图号批量添加";
  123. this.ResumeLayout(false);
  124. this.PerformLayout();
  125. }
  126. #endregion
  127. private System.Windows.Forms.Label label1;
  128. private System.Windows.Forms.TextBox txtPre;
  129. private System.Windows.Forms.Label label2;
  130. private System.Windows.Forms.ComboBox cmbLength;
  131. private System.Windows.Forms.Label label3;
  132. private System.Windows.Forms.ComboBox cmdStartNum;
  133. private System.Windows.Forms.Button btnRun;
  134. }
  135. }