You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

137 lines
6.0 KiB

  1. namespace HKCardManager.Message
  2. {
  3. partial class MessageShow
  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(MessageShow));
  29. this.button_ok = new System.Windows.Forms.Button();
  30. this.label1 = new System.Windows.Forms.Label();
  31. this.label2 = new System.Windows.Forms.Label();
  32. this.textBox1 = new System.Windows.Forms.TextBox();
  33. this.textBox3 = new System.Windows.Forms.TextBox();
  34. this.label4 = new System.Windows.Forms.Label();
  35. this.SuspendLayout();
  36. //
  37. // button_ok
  38. //
  39. this.button_ok.Font = new System.Drawing.Font("Microsoft YaHei UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point);
  40. this.button_ok.Location = new System.Drawing.Point(549, 334);
  41. this.button_ok.Name = "button_ok";
  42. this.button_ok.Size = new System.Drawing.Size(114, 34);
  43. this.button_ok.TabIndex = 37;
  44. this.button_ok.Text = "确认";
  45. this.button_ok.UseVisualStyleBackColor = true;
  46. this.button_ok.Click += new System.EventHandler(this.button_ok_Click);
  47. //
  48. // label1
  49. //
  50. this.label1.AutoSize = true;
  51. this.label1.Font = new System.Drawing.Font("Microsoft YaHei UI", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point);
  52. this.label1.ForeColor = System.Drawing.Color.DarkGreen;
  53. this.label1.Location = new System.Drawing.Point(23, 343);
  54. this.label1.Name = "label1";
  55. this.label1.Size = new System.Drawing.Size(292, 20);
  56. this.label1.TabIndex = 38;
  57. this.label1.Text = "批量录入成功!\\n成功123条\\n失败2323条\\n";
  58. //
  59. // label2
  60. //
  61. this.label2.AutoSize = true;
  62. this.label2.Font = new System.Drawing.Font("Microsoft YaHei UI", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point);
  63. this.label2.ForeColor = System.Drawing.Color.Black;
  64. this.label2.Location = new System.Drawing.Point(23, 156);
  65. this.label2.Name = "label2";
  66. this.label2.Size = new System.Drawing.Size(149, 20);
  67. this.label2.TabIndex = 39;
  68. this.label2.Text = "出错人员(未录入):";
  69. //
  70. // textBox1
  71. //
  72. this.textBox1.AcceptsReturn = true;
  73. this.textBox1.AllowDrop = true;
  74. this.textBox1.Location = new System.Drawing.Point(23, 32);
  75. this.textBox1.Multiline = true;
  76. this.textBox1.Name = "textBox1";
  77. this.textBox1.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
  78. this.textBox1.Size = new System.Drawing.Size(661, 121);
  79. this.textBox1.TabIndex = 41;
  80. this.textBox1.Text = resources.GetString("textBox1.Text");
  81. //
  82. // textBox3
  83. //
  84. this.textBox3.AcceptsReturn = true;
  85. this.textBox3.AllowDrop = true;
  86. this.textBox3.Location = new System.Drawing.Point(23, 179);
  87. this.textBox3.Multiline = true;
  88. this.textBox3.Name = "textBox3";
  89. this.textBox3.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
  90. this.textBox3.Size = new System.Drawing.Size(661, 147);
  91. this.textBox3.TabIndex = 45;
  92. this.textBox3.Text = resources.GetString("textBox3.Text");
  93. //
  94. // label4
  95. //
  96. this.label4.AutoSize = true;
  97. this.label4.Font = new System.Drawing.Font("Microsoft YaHei UI", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point);
  98. this.label4.ForeColor = System.Drawing.Color.Black;
  99. this.label4.Location = new System.Drawing.Point(23, 9);
  100. this.label4.Name = "label4";
  101. this.label4.Size = new System.Drawing.Size(79, 20);
  102. this.label4.TabIndex = 44;
  103. this.label4.Text = "成功人员:";
  104. //
  105. // MessageShow
  106. //
  107. this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 17F);
  108. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  109. this.ClientSize = new System.Drawing.Size(696, 378);
  110. this.Controls.Add(this.textBox3);
  111. this.Controls.Add(this.label4);
  112. this.Controls.Add(this.textBox1);
  113. this.Controls.Add(this.label2);
  114. this.Controls.Add(this.label1);
  115. this.Controls.Add(this.button_ok);
  116. this.MaximizeBox = false;
  117. this.MinimizeBox = false;
  118. this.Name = "MessageShow";
  119. this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
  120. this.Text = "批量导入提示";
  121. this.ResumeLayout(false);
  122. this.PerformLayout();
  123. }
  124. #endregion
  125. private Button button_ok;
  126. private Label label1;
  127. private Label label2;
  128. private TextBox textBox1;
  129. private TextBox textBox3;
  130. private Label label4;
  131. }
  132. }