PopupAudit.Designer.cs 7.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158
  1. namespace Core.StlMes.Client.Qcm
  2. {
  3. partial class PopupAudit
  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. Infragistics.Win.ValueListItem valueListItem1 = new Infragistics.Win.ValueListItem();
  29. Infragistics.Win.ValueListItem valueListItem2 = new Infragistics.Win.ValueListItem();
  30. System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(PopupAudit));
  31. this.btnSubmit = new System.Windows.Forms.Button();
  32. this.txtMemo = new System.Windows.Forms.TextBox();
  33. this.ultraGroupBox1 = new Infragistics.Win.Misc.UltraGroupBox();
  34. this.cmbAuditType = new Core.Mes.Client.Comm.Control.LabelComboBox();
  35. ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox1)).BeginInit();
  36. this.ultraGroupBox1.SuspendLayout();
  37. ((System.ComponentModel.ISupportInitialize)(this.cmbAuditType.ComboBox)).BeginInit();
  38. this.SuspendLayout();
  39. //
  40. // btnSubmit
  41. //
  42. this.btnSubmit.Location = new System.Drawing.Point(192, 12);
  43. this.btnSubmit.Name = "btnSubmit";
  44. this.btnSubmit.Size = new System.Drawing.Size(75, 23);
  45. this.btnSubmit.TabIndex = 0;
  46. this.btnSubmit.Text = "确认";
  47. this.btnSubmit.UseVisualStyleBackColor = true;
  48. this.btnSubmit.Click += new System.EventHandler(this.btnSubmit_Click);
  49. //
  50. // txtMemo
  51. //
  52. this.txtMemo.Dock = System.Windows.Forms.DockStyle.Fill;
  53. this.txtMemo.Location = new System.Drawing.Point(3, 18);
  54. this.txtMemo.Multiline = true;
  55. this.txtMemo.Name = "txtMemo";
  56. this.txtMemo.Size = new System.Drawing.Size(254, 85);
  57. this.txtMemo.TabIndex = 2;
  58. //
  59. // ultraGroupBox1
  60. //
  61. this.ultraGroupBox1.Controls.Add(this.txtMemo);
  62. this.ultraGroupBox1.Location = new System.Drawing.Point(12, 39);
  63. this.ultraGroupBox1.Name = "ultraGroupBox1";
  64. this.ultraGroupBox1.Size = new System.Drawing.Size(260, 106);
  65. this.ultraGroupBox1.TabIndex = 3;
  66. this.ultraGroupBox1.Text = "审核说明";
  67. //
  68. // cmbAuditType
  69. //
  70. this.cmbAuditType.BackColor = System.Drawing.Color.Transparent;
  71. //
  72. //
  73. //
  74. this.cmbAuditType.CheckBox.AutoSize = true;
  75. this.cmbAuditType.CheckBox.Checked = true;
  76. this.cmbAuditType.CheckBox.CheckState = System.Windows.Forms.CheckState.Checked;
  77. this.cmbAuditType.CheckBox.Location = new System.Drawing.Point(4, 4);
  78. this.cmbAuditType.CheckBox.Name = "checkBox1";
  79. this.cmbAuditType.CheckBox.Size = new System.Drawing.Size(15, 14);
  80. this.cmbAuditType.CheckBox.TabIndex = 0;
  81. this.cmbAuditType.CheckBox.UseVisualStyleBackColor = true;
  82. this.cmbAuditType.CheckBox.Visible = false;
  83. //
  84. //
  85. //
  86. this.cmbAuditType.ComboBox.Dock = System.Windows.Forms.DockStyle.Fill;
  87. this.cmbAuditType.ComboBox.DropDownStyle = Infragistics.Win.DropDownStyle.DropDownList;
  88. valueListItem1.DataValue = "";
  89. valueListItem1.DisplayText = "审核通过";
  90. valueListItem2.DataValue = "";
  91. valueListItem2.DisplayText = "审核不通过";
  92. this.cmbAuditType.ComboBox.Items.AddRange(new Infragistics.Win.ValueListItem[] {
  93. valueListItem1,
  94. valueListItem2});
  95. this.cmbAuditType.ComboBox.Location = new System.Drawing.Point(0, 0);
  96. this.cmbAuditType.ComboBox.Name = "comboBox1";
  97. this.cmbAuditType.ComboBox.Size = new System.Drawing.Size(113, 21);
  98. this.cmbAuditType.ComboBox.TabIndex = 1;
  99. //
  100. //
  101. //
  102. this.cmbAuditType.Label.AutoSize = true;
  103. this.cmbAuditType.Label.BackColor = System.Drawing.Color.Transparent;
  104. this.cmbAuditType.Label.Location = new System.Drawing.Point(4, 4);
  105. this.cmbAuditType.Label.Name = "label1";
  106. this.cmbAuditType.Label.Size = new System.Drawing.Size(53, 12);
  107. this.cmbAuditType.Label.TabIndex = 2;
  108. this.cmbAuditType.Label.Text = "审核结果";
  109. this.cmbAuditType.Location = new System.Drawing.Point(13, 12);
  110. this.cmbAuditType.Name = "cmbAuditType";
  111. this.cmbAuditType.Size = new System.Drawing.Size(173, 21);
  112. this.cmbAuditType.TabIndex = 1;
  113. //
  114. // PopupAudit
  115. //
  116. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
  117. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  118. this.ClientSize = new System.Drawing.Size(285, 154);
  119. this.Controls.Add(this.ultraGroupBox1);
  120. this.Controls.Add(this.cmbAuditType);
  121. this.Controls.Add(this.btnSubmit);
  122. this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
  123. this.MaximizeBox = false;
  124. this.MinimizeBox = false;
  125. this.Name = "PopupAudit";
  126. this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
  127. this.Text = "审核";
  128. ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox1)).EndInit();
  129. this.ultraGroupBox1.ResumeLayout(false);
  130. this.ultraGroupBox1.PerformLayout();
  131. ((System.ComponentModel.ISupportInitialize)(this.cmbAuditType.ComboBox)).EndInit();
  132. this.ResumeLayout(false);
  133. }
  134. #endregion
  135. private System.Windows.Forms.Button btnSubmit;
  136. private Core.Mes.Client.Comm.Control.LabelComboBox cmbAuditType;
  137. public Core.Mes.Client.Comm.Control.LabelComboBox CmbAuditType
  138. {
  139. get { return cmbAuditType; }
  140. set { cmbAuditType = value; }
  141. }
  142. private System.Windows.Forms.TextBox txtMemo;
  143. public System.Windows.Forms.TextBox TxtMemo
  144. {
  145. get { return txtMemo; }
  146. set { txtMemo = value; }
  147. }
  148. private Infragistics.Win.Misc.UltraGroupBox ultraGroupBox1;
  149. }
  150. }