namespace AutoNum { partial class AutoNumForm { /// /// Required designer variable. /// private System.ComponentModel.IContainer components = null; /// /// Clean up any resources being used. /// /// true if managed resources should be disposed; otherwise, false. protected override void Dispose(bool disposing) { if (disposing && (components != null)) { components.Dispose(); } base.Dispose(disposing); } #region Windows Form Designer generated code /// /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// private void InitializeComponent() { this.label1 = new System.Windows.Forms.Label(); this.txtPre = new System.Windows.Forms.TextBox(); this.label2 = new System.Windows.Forms.Label(); this.cmbLength = new System.Windows.Forms.ComboBox(); this.label3 = new System.Windows.Forms.Label(); this.cmdStartNum = new System.Windows.Forms.ComboBox(); this.btnRun = new System.Windows.Forms.Button(); this.SuspendLayout(); // // label1 // this.label1.AutoSize = true; this.label1.Location = new System.Drawing.Point(32, 36); this.label1.Name = "label1"; this.label1.Size = new System.Drawing.Size(52, 15); this.label1.TabIndex = 0; this.label1.Text = "前缀:"; // // txtPre // this.txtPre.Location = new System.Drawing.Point(90, 31); this.txtPre.Name = "txtPre"; this.txtPre.Size = new System.Drawing.Size(310, 25); this.txtPre.TabIndex = 1; this.txtPre.Text = "批量编号"; // // label2 // this.label2.AutoSize = true; this.label2.Location = new System.Drawing.Point(32, 77); this.label2.Name = "label2"; this.label2.Size = new System.Drawing.Size(52, 15); this.label2.TabIndex = 0; this.label2.Text = "位数:"; // // cmbLength // this.cmbLength.FormattingEnabled = true; this.cmbLength.Items.AddRange(new object[] { "3", "2", "1"}); this.cmbLength.Location = new System.Drawing.Point(90, 73); this.cmbLength.Name = "cmbLength"; this.cmbLength.Size = new System.Drawing.Size(81, 23); this.cmbLength.TabIndex = 2; this.cmbLength.Text = "3"; // // label3 // this.label3.AutoSize = true; this.label3.Location = new System.Drawing.Point(261, 77); this.label3.Name = "label3"; this.label3.Size = new System.Drawing.Size(52, 15); this.label3.TabIndex = 0; this.label3.Text = "起始:"; // // cmdStartNum // this.cmdStartNum.FormattingEnabled = true; this.cmdStartNum.Items.AddRange(new object[] { "1", "0"}); this.cmdStartNum.Location = new System.Drawing.Point(319, 73); this.cmdStartNum.Name = "cmdStartNum"; this.cmdStartNum.Size = new System.Drawing.Size(81, 23); this.cmdStartNum.TabIndex = 2; this.cmdStartNum.Text = "1"; // // btnRun // this.btnRun.Location = new System.Drawing.Point(125, 136); this.btnRun.Name = "btnRun"; this.btnRun.Size = new System.Drawing.Size(177, 30); this.btnRun.TabIndex = 3; this.btnRun.Text = "开始编号"; this.btnRun.UseVisualStyleBackColor = true; this.btnRun.Click += new System.EventHandler(this.btnRun_Click); // // AutoNumForm // this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 15F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.ClientSize = new System.Drawing.Size(427, 178); this.Controls.Add(this.btnRun); this.Controls.Add(this.cmdStartNum); this.Controls.Add(this.cmbLength); this.Controls.Add(this.txtPre); this.Controls.Add(this.label3); this.Controls.Add(this.label2); this.Controls.Add(this.label1); this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow; this.Name = "AutoNumForm"; this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen; this.Text = "CAD图号批量添加"; this.ResumeLayout(false); this.PerformLayout(); } #endregion private System.Windows.Forms.Label label1; private System.Windows.Forms.TextBox txtPre; private System.Windows.Forms.Label label2; private System.Windows.Forms.ComboBox cmbLength; private System.Windows.Forms.Label label3; private System.Windows.Forms.ComboBox cmdStartNum; private System.Windows.Forms.Button btnRun; } }