PopupGroup.Designer.cs 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106
  1. namespace Core.StlMes.Client.Qcm
  2. {
  3. partial class PopupGroup
  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. System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(PopupGroup));
  29. this.numGroupNum = new System.Windows.Forms.NumericUpDown();
  30. this.label1 = new System.Windows.Forms.Label();
  31. this.btnOk = new System.Windows.Forms.Button();
  32. ((System.ComponentModel.ISupportInitialize)(this.numGroupNum)).BeginInit();
  33. this.SuspendLayout();
  34. //
  35. // numGroupNum
  36. //
  37. this.numGroupNum.Location = new System.Drawing.Point(65, 9);
  38. this.numGroupNum.Minimum = new decimal(new int[] {
  39. 1,
  40. 0,
  41. 0,
  42. 0});
  43. this.numGroupNum.Name = "numGroupNum";
  44. this.numGroupNum.Size = new System.Drawing.Size(76, 21);
  45. this.numGroupNum.TabIndex = 0;
  46. this.numGroupNum.Value = new decimal(new int[] {
  47. 1,
  48. 0,
  49. 0,
  50. 0});
  51. //
  52. // label1
  53. //
  54. this.label1.AutoSize = true;
  55. this.label1.Location = new System.Drawing.Point(18, 13);
  56. this.label1.Name = "label1";
  57. this.label1.Size = new System.Drawing.Size(41, 12);
  58. this.label1.TabIndex = 1;
  59. this.label1.Text = "组号:";
  60. //
  61. // btnOk
  62. //
  63. this.btnOk.Location = new System.Drawing.Point(168, 9);
  64. this.btnOk.Name = "btnOk";
  65. this.btnOk.Size = new System.Drawing.Size(75, 23);
  66. this.btnOk.TabIndex = 2;
  67. this.btnOk.Text = "确定";
  68. this.btnOk.UseVisualStyleBackColor = true;
  69. this.btnOk.Click += new System.EventHandler(this.btnOk_Click);
  70. //
  71. // PopupGroup
  72. //
  73. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
  74. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  75. this.ClientSize = new System.Drawing.Size(269, 41);
  76. this.Controls.Add(this.btnOk);
  77. this.Controls.Add(this.label1);
  78. this.Controls.Add(this.numGroupNum);
  79. this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
  80. this.MaximizeBox = false;
  81. this.MinimizeBox = false;
  82. this.Name = "PopupGroup";
  83. this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
  84. this.Text = "请输入组号";
  85. ((System.ComponentModel.ISupportInitialize)(this.numGroupNum)).EndInit();
  86. this.ResumeLayout(false);
  87. this.PerformLayout();
  88. }
  89. #endregion
  90. private System.Windows.Forms.NumericUpDown numGroupNum;
  91. public System.Windows.Forms.NumericUpDown NumGroupNum
  92. {
  93. get { return numGroupNum; }
  94. set { numGroupNum = value; }
  95. }
  96. private System.Windows.Forms.Label label1;
  97. private System.Windows.Forms.Button btnOk;
  98. }
  99. }