| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106 |
- namespace Core.StlMes.Client.Qcm
- {
- partial class PopupGroup
- {
- /// <summary>
- /// Required designer variable.
- /// </summary>
- private System.ComponentModel.IContainer components = null;
- /// <summary>
- /// Clean up any resources being used.
- /// </summary>
- /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
- protected override void Dispose(bool disposing)
- {
- if (disposing && (components != null))
- {
- components.Dispose();
- }
- base.Dispose(disposing);
- }
- #region Windows Form Designer generated code
- /// <summary>
- /// Required method for Designer support - do not modify
- /// the contents of this method with the code editor.
- /// </summary>
- private void InitializeComponent()
- {
- System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(PopupGroup));
- this.numGroupNum = new System.Windows.Forms.NumericUpDown();
- this.label1 = new System.Windows.Forms.Label();
- this.btnOk = new System.Windows.Forms.Button();
- ((System.ComponentModel.ISupportInitialize)(this.numGroupNum)).BeginInit();
- this.SuspendLayout();
- //
- // numGroupNum
- //
- this.numGroupNum.Location = new System.Drawing.Point(65, 9);
- this.numGroupNum.Minimum = new decimal(new int[] {
- 1,
- 0,
- 0,
- 0});
- this.numGroupNum.Name = "numGroupNum";
- this.numGroupNum.Size = new System.Drawing.Size(76, 21);
- this.numGroupNum.TabIndex = 0;
- this.numGroupNum.Value = new decimal(new int[] {
- 1,
- 0,
- 0,
- 0});
- //
- // label1
- //
- this.label1.AutoSize = true;
- this.label1.Location = new System.Drawing.Point(18, 13);
- this.label1.Name = "label1";
- this.label1.Size = new System.Drawing.Size(41, 12);
- this.label1.TabIndex = 1;
- this.label1.Text = "组号:";
- //
- // btnOk
- //
- this.btnOk.Location = new System.Drawing.Point(168, 9);
- this.btnOk.Name = "btnOk";
- this.btnOk.Size = new System.Drawing.Size(75, 23);
- this.btnOk.TabIndex = 2;
- this.btnOk.Text = "确定";
- this.btnOk.UseVisualStyleBackColor = true;
- this.btnOk.Click += new System.EventHandler(this.btnOk_Click);
- //
- // PopupGroup
- //
- this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
- this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
- this.ClientSize = new System.Drawing.Size(269, 41);
- this.Controls.Add(this.btnOk);
- this.Controls.Add(this.label1);
- this.Controls.Add(this.numGroupNum);
- this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
- this.MaximizeBox = false;
- this.MinimizeBox = false;
- this.Name = "PopupGroup";
- this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
- this.Text = "请输入组号";
- ((System.ComponentModel.ISupportInitialize)(this.numGroupNum)).EndInit();
- this.ResumeLayout(false);
- this.PerformLayout();
- }
- #endregion
- private System.Windows.Forms.NumericUpDown numGroupNum;
- public System.Windows.Forms.NumericUpDown NumGroupNum
- {
- get { return numGroupNum; }
- set { numGroupNum = value; }
- }
- private System.Windows.Forms.Label label1;
- private System.Windows.Forms.Button btnOk;
- }
- }
|