PopupAudite.Designer.cs 7.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168
  1. namespace Core.StlMes.Client.Judge.Forms
  2. {
  3. partial class PopupAudite
  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(PopupAudite));
  31. this.btnSubmit = new System.Windows.Forms.Button();
  32. this.txtAudit = new System.Windows.Forms.TextBox();
  33. this.panel1 = new System.Windows.Forms.Panel();
  34. this.cmbAuditType = new Core.Mes.Client.Comm.Control.LabelComboBox();
  35. this.panel1.SuspendLayout();
  36. ((System.ComponentModel.ISupportInitialize)(this.cmbAuditType.ComboBox)).BeginInit();
  37. this.SuspendLayout();
  38. //
  39. // btnSubmit
  40. //
  41. this.btnSubmit.Location = new System.Drawing.Point(336, 15);
  42. this.btnSubmit.Margin = new System.Windows.Forms.Padding(4);
  43. this.btnSubmit.Name = "btnSubmit";
  44. this.btnSubmit.Size = new System.Drawing.Size(100, 29);
  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. // txtAudit
  51. //
  52. this.txtAudit.Dock = System.Windows.Forms.DockStyle.Fill;
  53. this.txtAudit.Location = new System.Drawing.Point(0, 61);
  54. this.txtAudit.Margin = new System.Windows.Forms.Padding(4);
  55. this.txtAudit.MaxLength = 250;
  56. this.txtAudit.Multiline = true;
  57. this.txtAudit.Name = "txtAudit";
  58. this.txtAudit.Size = new System.Drawing.Size(586, 304);
  59. this.txtAudit.TabIndex = 2;
  60. //
  61. // panel1
  62. //
  63. this.panel1.Controls.Add(this.btnSubmit);
  64. this.panel1.Controls.Add(this.cmbAuditType);
  65. this.panel1.Dock = System.Windows.Forms.DockStyle.Top;
  66. this.panel1.Location = new System.Drawing.Point(0, 0);
  67. this.panel1.Margin = new System.Windows.Forms.Padding(4);
  68. this.panel1.Name = "panel1";
  69. this.panel1.Size = new System.Drawing.Size(586, 61);
  70. this.panel1.TabIndex = 3;
  71. //
  72. // cmbAuditType
  73. //
  74. this.cmbAuditType.BackColor = System.Drawing.Color.Transparent;
  75. //
  76. //
  77. //
  78. this.cmbAuditType.CheckBox.AutoSize = true;
  79. this.cmbAuditType.CheckBox.Checked = true;
  80. this.cmbAuditType.CheckBox.CheckState = System.Windows.Forms.CheckState.Checked;
  81. this.cmbAuditType.CheckBox.Location = new System.Drawing.Point(4, 4);
  82. this.cmbAuditType.CheckBox.Name = "checkBox1";
  83. this.cmbAuditType.CheckBox.Size = new System.Drawing.Size(18, 17);
  84. this.cmbAuditType.CheckBox.TabIndex = 0;
  85. this.cmbAuditType.CheckBox.UseVisualStyleBackColor = true;
  86. this.cmbAuditType.CheckBox.Visible = false;
  87. //
  88. //
  89. //
  90. this.cmbAuditType.ComboBox.Dock = System.Windows.Forms.DockStyle.Fill;
  91. this.cmbAuditType.ComboBox.DropDownStyle = Infragistics.Win.DropDownStyle.DropDownList;
  92. valueListItem1.DataValue = "1";
  93. valueListItem1.DisplayText = "通过";
  94. valueListItem2.DataValue = "0";
  95. valueListItem2.DisplayText = "不通过";
  96. this.cmbAuditType.ComboBox.Items.AddRange(new Infragistics.Win.ValueListItem[] {
  97. valueListItem1,
  98. valueListItem2});
  99. this.cmbAuditType.ComboBox.Location = new System.Drawing.Point(0, 0);
  100. this.cmbAuditType.ComboBox.Name = "comboBox1";
  101. this.cmbAuditType.ComboBox.Size = new System.Drawing.Size(149, 24);
  102. this.cmbAuditType.ComboBox.TabIndex = 1;
  103. //
  104. //
  105. //
  106. this.cmbAuditType.Label.AutoSize = true;
  107. this.cmbAuditType.Label.BackColor = System.Drawing.Color.Transparent;
  108. this.cmbAuditType.Label.Location = new System.Drawing.Point(4, 4);
  109. this.cmbAuditType.Label.Name = "label1";
  110. this.cmbAuditType.Label.Size = new System.Drawing.Size(67, 15);
  111. this.cmbAuditType.Label.TabIndex = 2;
  112. this.cmbAuditType.Label.Text = "审核结果";
  113. this.cmbAuditType.Location = new System.Drawing.Point(82, 16);
  114. this.cmbAuditType.Margin = new System.Windows.Forms.Padding(5);
  115. this.cmbAuditType.Name = "cmbAuditType";
  116. this.cmbAuditType.Size = new System.Drawing.Size(223, 26);
  117. this.cmbAuditType.TabIndex = 1;
  118. //
  119. // PopupAudite
  120. //
  121. this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 15F);
  122. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  123. this.ClientSize = new System.Drawing.Size(586, 365);
  124. this.Controls.Add(this.txtAudit);
  125. this.Controls.Add(this.panel1);
  126. this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
  127. this.Margin = new System.Windows.Forms.Padding(5);
  128. this.MaximizeBox = false;
  129. this.MinimizeBox = false;
  130. this.Name = "PopupAudite";
  131. this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
  132. this.Text = "审核";
  133. this.panel1.ResumeLayout(false);
  134. ((System.ComponentModel.ISupportInitialize)(this.cmbAuditType.ComboBox)).EndInit();
  135. this.ResumeLayout(false);
  136. this.PerformLayout();
  137. }
  138. #endregion
  139. private System.Windows.Forms.Button btnSubmit;
  140. public System.Windows.Forms.Button BtnSubmit
  141. {
  142. get { return btnSubmit; }
  143. set { btnSubmit = value; }
  144. }
  145. private Core.Mes.Client.Comm.Control.LabelComboBox cmbAuditType;
  146. private System.Windows.Forms.TextBox txtAudit;
  147. public System.Windows.Forms.TextBox TxtAudit
  148. {
  149. get { return txtAudit; }
  150. set { txtAudit = value; }
  151. }
  152. private System.Windows.Forms.Panel panel1;
  153. public Core.Mes.Client.Comm.Control.LabelComboBox CmbAuditType
  154. {
  155. get { return cmbAuditType; }
  156. set { cmbAuditType = value; }
  157. }
  158. }
  159. }