MainForm.Designer.cs 6.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179
  1. namespace SnapshotWinFormsApp;
  2. partial class MainForm
  3. {
  4. /// <summary>
  5. /// Required designer variable.
  6. /// </summary>
  7. private System.ComponentModel.IContainer components = null;
  8. /// <summary>
  9. /// Clean up any resources being used.
  10. /// </summary>
  11. /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
  12. protected override void Dispose(bool disposing)
  13. {
  14. if (disposing && (components != null))
  15. {
  16. components.Dispose();
  17. }
  18. base.Dispose(disposing);
  19. }
  20. #region Windows Form Designer generated code
  21. /// <summary>
  22. /// Required method for Designer support - do not modify
  23. /// the contents of this method with the code editor.
  24. /// </summary>
  25. private void InitializeComponent()
  26. {
  27. logTxt = new TextBox();
  28. CancelBtn = new Button();
  29. splitContainer1 = new SplitContainer();
  30. tableLayoutPanel1 = new TableLayoutPanel();
  31. OkBtn = new Button();
  32. guiderCBox = new CheckBox();
  33. thirdAccountCBox = new CheckBox();
  34. communityInfoCBox = new CheckBox();
  35. ((System.ComponentModel.ISupportInitialize)splitContainer1).BeginInit();
  36. splitContainer1.Panel1.SuspendLayout();
  37. splitContainer1.Panel2.SuspendLayout();
  38. splitContainer1.SuspendLayout();
  39. tableLayoutPanel1.SuspendLayout();
  40. SuspendLayout();
  41. //
  42. // logTxt
  43. //
  44. logTxt.BackColor = Color.Black;
  45. logTxt.BorderStyle = BorderStyle.None;
  46. logTxt.Dock = DockStyle.Fill;
  47. logTxt.Font = new Font("Courier New", 12F, FontStyle.Bold, GraphicsUnit.Point);
  48. logTxt.ForeColor = Color.LimeGreen;
  49. logTxt.Location = new Point(0, 0);
  50. logTxt.Multiline = true;
  51. logTxt.Name = "logTxt";
  52. logTxt.ScrollBars = ScrollBars.Vertical;
  53. logTxt.Size = new Size(739, 526);
  54. logTxt.TabIndex = 1;
  55. //
  56. // CancelBtn
  57. //
  58. CancelBtn.Location = new Point(103, 3);
  59. CancelBtn.Name = "CancelBtn";
  60. CancelBtn.Size = new Size(75, 23);
  61. CancelBtn.TabIndex = 0;
  62. CancelBtn.Text = "停止任务";
  63. CancelBtn.UseVisualStyleBackColor = true;
  64. CancelBtn.Click += CancelBtn_Click;
  65. //
  66. // splitContainer1
  67. //
  68. splitContainer1.Dock = DockStyle.Fill;
  69. splitContainer1.FixedPanel = FixedPanel.Panel1;
  70. splitContainer1.IsSplitterFixed = true;
  71. splitContainer1.Location = new Point(0, 0);
  72. splitContainer1.Name = "splitContainer1";
  73. //
  74. // splitContainer1.Panel1
  75. //
  76. splitContainer1.Panel1.Controls.Add(tableLayoutPanel1);
  77. //
  78. // splitContainer1.Panel2
  79. //
  80. splitContainer1.Panel2.Controls.Add(logTxt);
  81. splitContainer1.Panel2MinSize = 200;
  82. splitContainer1.Size = new Size(943, 526);
  83. splitContainer1.SplitterDistance = 200;
  84. splitContainer1.TabIndex = 2;
  85. //
  86. // tableLayoutPanel1
  87. //
  88. tableLayoutPanel1.ColumnCount = 2;
  89. tableLayoutPanel1.ColumnStyles.Add(new ColumnStyle(SizeType.Percent, 50F));
  90. tableLayoutPanel1.ColumnStyles.Add(new ColumnStyle(SizeType.Percent, 50F));
  91. tableLayoutPanel1.Controls.Add(communityInfoCBox, 0, 2);
  92. tableLayoutPanel1.Controls.Add(OkBtn, 0, 0);
  93. tableLayoutPanel1.Controls.Add(CancelBtn, 1, 0);
  94. tableLayoutPanel1.Controls.Add(guiderCBox, 0, 1);
  95. tableLayoutPanel1.Controls.Add(thirdAccountCBox, 1, 1);
  96. tableLayoutPanel1.Dock = DockStyle.Fill;
  97. tableLayoutPanel1.Location = new Point(0, 0);
  98. tableLayoutPanel1.Name = "tableLayoutPanel1";
  99. tableLayoutPanel1.RowCount = 3;
  100. tableLayoutPanel1.RowStyles.Add(new RowStyle(SizeType.Percent, 50F));
  101. tableLayoutPanel1.RowStyles.Add(new RowStyle(SizeType.Percent, 50F));
  102. tableLayoutPanel1.RowStyles.Add(new RowStyle(SizeType.Absolute, 175F));
  103. tableLayoutPanel1.Size = new Size(200, 526);
  104. tableLayoutPanel1.TabIndex = 1;
  105. //
  106. // OkBtn
  107. //
  108. OkBtn.Location = new Point(3, 3);
  109. OkBtn.Name = "OkBtn";
  110. OkBtn.Size = new Size(75, 23);
  111. OkBtn.TabIndex = 0;
  112. OkBtn.Text = "开始导入";
  113. OkBtn.UseVisualStyleBackColor = true;
  114. OkBtn.Click += OkBtn_Click;
  115. //
  116. // guiderCBox
  117. //
  118. guiderCBox.AutoSize = true;
  119. guiderCBox.Location = new Point(3, 178);
  120. guiderCBox.Name = "guiderCBox";
  121. guiderCBox.Size = new Size(91, 19);
  122. guiderCBox.TabIndex = 1;
  123. guiderCBox.Text = "导入网格员";
  124. guiderCBox.UseVisualStyleBackColor = true;
  125. //
  126. // thirdAccountCBox
  127. //
  128. thirdAccountCBox.AutoSize = true;
  129. thirdAccountCBox.Location = new Point(103, 178);
  130. thirdAccountCBox.Name = "thirdAccountCBox";
  131. thirdAccountCBox.Size = new Size(94, 19);
  132. thirdAccountCBox.TabIndex = 2;
  133. thirdAccountCBox.Text = "导入微信账号";
  134. thirdAccountCBox.UseVisualStyleBackColor = true;
  135. //
  136. // communityInfoCBox
  137. //
  138. communityInfoCBox.AutoSize = true;
  139. communityInfoCBox.Location = new Point(3, 353);
  140. communityInfoCBox.Name = "communityInfoCBox";
  141. communityInfoCBox.Size = new Size(94, 19);
  142. communityInfoCBox.TabIndex = 3;
  143. communityInfoCBox.Text = "导入社区信息";
  144. communityInfoCBox.UseVisualStyleBackColor = true;
  145. //
  146. // MainForm
  147. //
  148. AcceptButton = OkBtn;
  149. AutoScaleDimensions = new SizeF(7F, 15F);
  150. AutoScaleMode = AutoScaleMode.Font;
  151. ClientSize = new Size(943, 526);
  152. Controls.Add(splitContainer1);
  153. Name = "MainForm";
  154. StartPosition = FormStartPosition.CenterScreen;
  155. Text = "随手拍数据导入";
  156. splitContainer1.Panel1.ResumeLayout(false);
  157. splitContainer1.Panel2.ResumeLayout(false);
  158. splitContainer1.Panel2.PerformLayout();
  159. ((System.ComponentModel.ISupportInitialize)splitContainer1).EndInit();
  160. splitContainer1.ResumeLayout(false);
  161. tableLayoutPanel1.ResumeLayout(false);
  162. tableLayoutPanel1.PerformLayout();
  163. ResumeLayout(false);
  164. }
  165. #endregion
  166. private TextBox logTxt;
  167. private Button CancelBtn;
  168. private SplitContainer splitContainer1;
  169. private TableLayoutPanel tableLayoutPanel1;
  170. private Button OkBtn;
  171. private CheckBox guiderCBox;
  172. private CheckBox thirdAccountCBox;
  173. private CheckBox communityInfoCBox;
  174. }