|
@@ -28,11 +28,14 @@ partial class MainForm
|
|
|
/// </summary>
|
|
|
private void InitializeComponent()
|
|
|
{
|
|
|
- OkBtn = new Button();
|
|
|
logTxt = new TextBox();
|
|
|
CancelBtn = new Button();
|
|
|
splitContainer1 = new SplitContainer();
|
|
|
tableLayoutPanel1 = new TableLayoutPanel();
|
|
|
+ OkBtn = new Button();
|
|
|
+ guiderCBox = new CheckBox();
|
|
|
+ thirdAccountCBox = new CheckBox();
|
|
|
+ communityInfoCBox = new CheckBox();
|
|
|
((System.ComponentModel.ISupportInitialize)splitContainer1).BeginInit();
|
|
|
splitContainer1.Panel1.SuspendLayout();
|
|
|
splitContainer1.Panel2.SuspendLayout();
|
|
@@ -40,16 +43,6 @@ partial class MainForm
|
|
|
tableLayoutPanel1.SuspendLayout();
|
|
|
SuspendLayout();
|
|
|
//
|
|
|
- // OkBtn
|
|
|
- //
|
|
|
- OkBtn.Location = new Point(3, 3);
|
|
|
- OkBtn.Name = "OkBtn";
|
|
|
- OkBtn.Size = new Size(75, 23);
|
|
|
- OkBtn.TabIndex = 0;
|
|
|
- OkBtn.Text = "开始导入";
|
|
|
- OkBtn.UseVisualStyleBackColor = true;
|
|
|
- OkBtn.Click += OkBtn_Click;
|
|
|
- //
|
|
|
// logTxt
|
|
|
//
|
|
|
logTxt.BackColor = Color.Black;
|
|
@@ -99,17 +92,61 @@ partial class MainForm
|
|
|
tableLayoutPanel1.ColumnCount = 2;
|
|
|
tableLayoutPanel1.ColumnStyles.Add(new ColumnStyle(SizeType.Percent, 50F));
|
|
|
tableLayoutPanel1.ColumnStyles.Add(new ColumnStyle(SizeType.Percent, 50F));
|
|
|
+ tableLayoutPanel1.Controls.Add(communityInfoCBox, 0, 2);
|
|
|
tableLayoutPanel1.Controls.Add(OkBtn, 0, 0);
|
|
|
tableLayoutPanel1.Controls.Add(CancelBtn, 1, 0);
|
|
|
+ tableLayoutPanel1.Controls.Add(guiderCBox, 0, 1);
|
|
|
+ tableLayoutPanel1.Controls.Add(thirdAccountCBox, 1, 1);
|
|
|
tableLayoutPanel1.Dock = DockStyle.Fill;
|
|
|
tableLayoutPanel1.Location = new Point(0, 0);
|
|
|
tableLayoutPanel1.Name = "tableLayoutPanel1";
|
|
|
- tableLayoutPanel1.RowCount = 2;
|
|
|
+ tableLayoutPanel1.RowCount = 3;
|
|
|
tableLayoutPanel1.RowStyles.Add(new RowStyle(SizeType.Percent, 50F));
|
|
|
tableLayoutPanel1.RowStyles.Add(new RowStyle(SizeType.Percent, 50F));
|
|
|
+ tableLayoutPanel1.RowStyles.Add(new RowStyle(SizeType.Absolute, 175F));
|
|
|
tableLayoutPanel1.Size = new Size(200, 526);
|
|
|
tableLayoutPanel1.TabIndex = 1;
|
|
|
//
|
|
|
+ // OkBtn
|
|
|
+ //
|
|
|
+ OkBtn.Location = new Point(3, 3);
|
|
|
+ OkBtn.Name = "OkBtn";
|
|
|
+ OkBtn.Size = new Size(75, 23);
|
|
|
+ OkBtn.TabIndex = 0;
|
|
|
+ OkBtn.Text = "开始导入";
|
|
|
+ OkBtn.UseVisualStyleBackColor = true;
|
|
|
+ OkBtn.Click += OkBtn_Click;
|
|
|
+ //
|
|
|
+ // guiderCBox
|
|
|
+ //
|
|
|
+ guiderCBox.AutoSize = true;
|
|
|
+ guiderCBox.Location = new Point(3, 178);
|
|
|
+ guiderCBox.Name = "guiderCBox";
|
|
|
+ guiderCBox.Size = new Size(91, 19);
|
|
|
+ guiderCBox.TabIndex = 1;
|
|
|
+ guiderCBox.Text = "导入网格员";
|
|
|
+ guiderCBox.UseVisualStyleBackColor = true;
|
|
|
+ //
|
|
|
+ // thirdAccountCBox
|
|
|
+ //
|
|
|
+ thirdAccountCBox.AutoSize = true;
|
|
|
+ thirdAccountCBox.Location = new Point(103, 178);
|
|
|
+ thirdAccountCBox.Name = "thirdAccountCBox";
|
|
|
+ thirdAccountCBox.Size = new Size(94, 19);
|
|
|
+ thirdAccountCBox.TabIndex = 2;
|
|
|
+ thirdAccountCBox.Text = "导入微信账号";
|
|
|
+ thirdAccountCBox.UseVisualStyleBackColor = true;
|
|
|
+ //
|
|
|
+ // communityInfoCBox
|
|
|
+ //
|
|
|
+ communityInfoCBox.AutoSize = true;
|
|
|
+ communityInfoCBox.Location = new Point(3, 353);
|
|
|
+ communityInfoCBox.Name = "communityInfoCBox";
|
|
|
+ communityInfoCBox.Size = new Size(94, 19);
|
|
|
+ communityInfoCBox.TabIndex = 3;
|
|
|
+ communityInfoCBox.Text = "导入社区信息";
|
|
|
+ communityInfoCBox.UseVisualStyleBackColor = true;
|
|
|
+ //
|
|
|
// MainForm
|
|
|
//
|
|
|
AcceptButton = OkBtn;
|
|
@@ -126,14 +163,17 @@ partial class MainForm
|
|
|
((System.ComponentModel.ISupportInitialize)splitContainer1).EndInit();
|
|
|
splitContainer1.ResumeLayout(false);
|
|
|
tableLayoutPanel1.ResumeLayout(false);
|
|
|
+ tableLayoutPanel1.PerformLayout();
|
|
|
ResumeLayout(false);
|
|
|
}
|
|
|
|
|
|
#endregion
|
|
|
-
|
|
|
- private Button OkBtn;
|
|
|
private TextBox logTxt;
|
|
|
private Button CancelBtn;
|
|
|
private SplitContainer splitContainer1;
|
|
|
private TableLayoutPanel tableLayoutPanel1;
|
|
|
+ private Button OkBtn;
|
|
|
+ private CheckBox guiderCBox;
|
|
|
+ private CheckBox thirdAccountCBox;
|
|
|
+ private CheckBox communityInfoCBox;
|
|
|
}
|