frmExamineShow.Designer.cs 6.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145
  1. namespace Pur.Pop_upWindow
  2. {
  3. partial class frmExamineShow
  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(frmExamineShow));
  29. this.label1 = new System.Windows.Forms.Label();
  30. this.radioButton1 = new System.Windows.Forms.RadioButton();
  31. this.radioButton2 = new System.Windows.Forms.RadioButton();
  32. this.label2 = new System.Windows.Forms.Label();
  33. this.textBox1 = new System.Windows.Forms.TextBox();
  34. this.button1 = new System.Windows.Forms.Button();
  35. this.button2 = new System.Windows.Forms.Button();
  36. this.SuspendLayout();
  37. //
  38. // label1
  39. //
  40. this.label1.AutoSize = true;
  41. this.label1.Location = new System.Drawing.Point(14, 11);
  42. this.label1.Name = "label1";
  43. this.label1.Size = new System.Drawing.Size(65, 12);
  44. this.label1.TabIndex = 0;
  45. this.label1.Text = "审批结果:";
  46. //
  47. // radioButton1
  48. //
  49. this.radioButton1.AutoSize = true;
  50. this.radioButton1.Checked = true;
  51. this.radioButton1.Location = new System.Drawing.Point(88, 11);
  52. this.radioButton1.Name = "radioButton1";
  53. this.radioButton1.Size = new System.Drawing.Size(47, 16);
  54. this.radioButton1.TabIndex = 1;
  55. this.radioButton1.TabStop = true;
  56. this.radioButton1.Text = "通过";
  57. this.radioButton1.UseVisualStyleBackColor = true;
  58. //
  59. // radioButton2
  60. //
  61. this.radioButton2.AutoSize = true;
  62. this.radioButton2.Location = new System.Drawing.Point(153, 11);
  63. this.radioButton2.Name = "radioButton2";
  64. this.radioButton2.Size = new System.Drawing.Size(59, 16);
  65. this.radioButton2.TabIndex = 2;
  66. this.radioButton2.TabStop = true;
  67. this.radioButton2.Text = "不通过";
  68. this.radioButton2.UseVisualStyleBackColor = true;
  69. //
  70. // label2
  71. //
  72. this.label2.AutoSize = true;
  73. this.label2.Location = new System.Drawing.Point(13, 33);
  74. this.label2.Name = "label2";
  75. this.label2.Size = new System.Drawing.Size(65, 12);
  76. this.label2.TabIndex = 3;
  77. this.label2.Text = "审批意见:";
  78. //
  79. // textBox1
  80. //
  81. this.textBox1.Location = new System.Drawing.Point(84, 33);
  82. this.textBox1.Multiline = true;
  83. this.textBox1.Name = "textBox1";
  84. this.textBox1.Size = new System.Drawing.Size(260, 90);
  85. this.textBox1.TabIndex = 4;
  86. //
  87. // button1
  88. //
  89. this.button1.Location = new System.Drawing.Point(191, 129);
  90. this.button1.Name = "button1";
  91. this.button1.Size = new System.Drawing.Size(75, 23);
  92. this.button1.TabIndex = 5;
  93. this.button1.Text = "确 定";
  94. this.button1.UseVisualStyleBackColor = true;
  95. this.button1.Click += new System.EventHandler(this.button1_Click);
  96. //
  97. // button2
  98. //
  99. this.button2.Location = new System.Drawing.Point(272, 129);
  100. this.button2.Name = "button2";
  101. this.button2.Size = new System.Drawing.Size(75, 23);
  102. this.button2.TabIndex = 6;
  103. this.button2.Text = "取 消";
  104. this.button2.UseVisualStyleBackColor = true;
  105. this.button2.Click += new System.EventHandler(this.button2_Click);
  106. //
  107. // frmExamineShow
  108. //
  109. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
  110. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  111. this.AutoSize = true;
  112. this.ClientSize = new System.Drawing.Size(363, 158);
  113. this.Controls.Add(this.button2);
  114. this.Controls.Add(this.button1);
  115. this.Controls.Add(this.textBox1);
  116. this.Controls.Add(this.label2);
  117. this.Controls.Add(this.radioButton2);
  118. this.Controls.Add(this.radioButton1);
  119. this.Controls.Add(this.label1);
  120. this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
  121. this.MaximizeBox = false;
  122. this.MinimizeBox = false;
  123. this.Name = "frmExamineShow";
  124. this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
  125. this.Text = "审批";
  126. this.Load += new System.EventHandler(this.frmExamineShow_Load);
  127. this.ResumeLayout(false);
  128. this.PerformLayout();
  129. }
  130. #endregion
  131. private System.Windows.Forms.Label label1;
  132. private System.Windows.Forms.RadioButton radioButton1;
  133. private System.Windows.Forms.RadioButton radioButton2;
  134. private System.Windows.Forms.Label label2;
  135. private System.Windows.Forms.TextBox textBox1;
  136. private System.Windows.Forms.Button button1;
  137. private System.Windows.Forms.Button button2;
  138. }
  139. }