Files
kami_itunes_june/AppleBatch_June.Forms/FromAddRemoveFamilyMember.cs
2024-07-22 00:43:14 +08:00

586 lines
24 KiB
C#
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Drawing;
using System.Linq;
using System.Windows.Forms;
using AppleBatch_June.ExecuteTasks;
using AppleBatch_June.Model;
using AppleBatch_June.Views;
namespace AppleBatch_June.Forms
{
public class FromAddRemoveFamilyMember : BaseForm
{
private IContainer components;
private GroupBox groupBox9;
private TextBox textBox2;
private CheckBox ckAddRemoveFamilyMember;
private Label labAddRemoveFamilyMemberInter;
private Label label10;
private Label label13;
private GroupBox groupBox10;
private Label labAddRemoveFamilyMemberCount;
private Label label16;
private Button btnAddRemoveFamilyMemberClre;
private Button btnAddRemoveFamilyMemberLog;
private Button btnAddRemoveFamilyMembernput;
private Button btnAddRemoveFamilyMemberExper;
private Button btnAddRemoveFamilyMemberStart;
private GroupBox groupBox12;
private DoubleBufferListView listAddRemoveFamilyMember;
private ColumnHeader columnHeader8;
private ColumnHeader columnHeader9;
private ColumnHeader columnHeader10;
private ColumnHeader columnHeader3;
private ColumnHeader columnHeader1;
private ColumnHeader columnHeader14;
private Label label2;
private TextBox textBox1;
private Label label1;
private ColumnHeader columnHeader4;
private ColumnHeader columnHeader2;
public FromAddRemoveFamilyMember()
: base("添加或移除家庭成员", AddRemoveFamilyMemberTask.Instance)
{
InitializeComponent();
}
private void FromAddRemoveFamilyMember_Load(object sender, EventArgs e)
{
base.listData = listAddRemoveFamilyMember;
base.labCout = labAddRemoveFamilyMemberCount;
base.startBtn = btnAddRemoveFamilyMemberStart;
labAddRemoveFamilyMemberInter.Text = AppSysConfig.getTypeById(31).consNum.ToString();
ckAddRemoveFamilyMember.Checked = ((ConfigUtlis.getConfigValue("ckAddRemoveFamilyMember") == "True") ? true : false);
InitLv(base.listData);
BindMenuStrip(addTwoFactor: true);
}
private void btnAddRemoveFamilyMembernput_Click(object sender, EventArgs e)
{
FromInputAcount fromInputAcount = new FromInputAcount();
fromInputAcount.tipMssage = textBox2.Text;
fromInputAcount.isOpenSysVpn = ckAddRemoveFamilyMember.Checked;
if (fromInputAcount.ShowDialog() == DialogResult.OK)
{
List<AppleAcount> list = AppleUtlis.accountInput(fromInputAcount.StrInput, null, removePwd: false, isdeWeight: false);
int num = 0;
base.listData.ListViewItemSorter = new ListViewItemComparer(0, 1);
base.listData.Sort();
if (base.listData.Items.Count > 0 && int.TryParse(base.listData.Items[base.listData.Items.Count - 1].SubItems[0].Text, out var result))
{
num = result;
}
foreach (AppleAcount item in list)
{
num++;
ListViewItem listViewItem = new ListViewItem(num.ToString());
listViewItem.Tag = item.lvItemGuid;
listViewItem.UseItemStyleForSubItems = false;
listViewItem.SubItems.Add(item.appleId);
listViewItem.SubItems.Add(item.applePwd);
if (!string.IsNullOrEmpty(item.appleQt1))
{
if (!string.IsNullOrEmpty(item.overflow))
{
try
{
string obj = item.sourceInputData.Substring(item.sourceInputData.IndexOf(item.appleId) + item.appleId.Length).TrimStart('-');
List<AppleAcount> list2 = AppleUtlis.accountInput(obj.Substring(obj.IndexOf(item.applePwd) + item.applePwd.Length).TrimStart('-'));
if (list2.Count == 1)
{
listViewItem.SubItems.Add(list2[0].appleId.Trim());
listViewItem.SubItems.Add(list2[0].applePwd.Trim());
listViewItem.SubItems.Add(list2[0].overflow);
goto IL_0296;
}
}
catch (Exception)
{
}
continue;
}
listViewItem.SubItems.Add(item.appleQt1);
listViewItem.SubItems.Add(item.appleQt2);
listViewItem.SubItems.Add(item.appleQt3);
}
else
{
listViewItem.SubItems.Add(item.overflow);
listViewItem.SubItems.Add("-");
listViewItem.SubItems.Add("del");
}
goto IL_0296;
IL_0296:
listViewItem.SubItems.Add("-");
listViewItem.SubItems.Add("-");
base.listData.Items.Add(listViewItem);
}
}
base.labCout.Text = string.Concat(base.listData.Items.Count);
}
private void btnAddRemoveFamilyMemberStart_Click(object sender, EventArgs e)
{
if (!AddRemoveFamilyMemberTask.Instance.isRun && !AddRemoveFamilyMemberTask.Instance.TaskIsRun)
{
List<AppleAcount> lvItems = (from ListViewItem c in base.listData.Items
where c.SubItems[6].Text == "-"
select new AppleAcount
{
lvItemGuid = c.Tag.ToString(),
appleId = c.SubItems[1].Text,
applePwd = c.SubItems[2].Text,
newAppleId = c.SubItems[3].Text,
newApplePopPwd = c.SubItems[4].Text,
overflow = c.SubItems[5].Text
}).ToList();
RearTaskRun(lvItems);
return;
}
AddRemoveFamilyMemberTask.Instance.Stop();
if (!base.IsDisposed)
{
Invoke((Action)delegate
{
base.startBtn.Text = "正在停止";
base.startBtn.ForeColor = Color.Red;
});
}
}
private void RearTaskRun(List<AppleAcount> lvItems)
{
int id = 31;
int count = lvItems.Count;
if (AppSysConfig.integral < count * AppSysConfig.getTypeById(31).consNum)
{
MessageBox.Show("账号点数不足 , 执行账号数量:" + count + " ,至少需要 " + count * AppSysConfig.getTypeById(id).consNum + " 点数。");
}
else
{
ConfigUtlis.saveConfigKey("ckAddRemoveFamilyMember", ckAddRemoveFamilyMember.Checked.ToString());
AddRemoveFamilyMemberTask.Instance.ExecuteAddRemoveFamilyMember(2, ckAddRemoveFamilyMember.Checked, lvItems, base.startAct, base.endTakAct, sucessAct, _action);
}
}
public void sucessAct(string lvItemGuid)
{
UpdataUi(delegate
{
ListViewItem listViewItem = (from ListViewItem c in base.listData.Items
where c.Tag.ToString() == lvItemGuid
select c).FirstOrDefault();
if (listViewItem != null)
{
SqliteHelper.ExecuteInsert("itunes_db", new Dictionary<string, string>
{
{ "type", "addRemoveFamily" },
{
"addTime",
Tools.GenerateTimeStamp().ToString()
},
{
"value1",
listViewItem.SubItems[1].Text
},
{
"value2",
listViewItem.SubItems[2].Text
},
{
"value3",
listViewItem.SubItems[3].Text
},
{
"value4",
listViewItem.SubItems[4].Text
},
{
"value5",
listViewItem.SubItems[5].Text
},
{
"value6",
listViewItem.SubItems[6].Text
},
{
"value7",
listViewItem.SubItems[7].Text
}
});
}
});
}
public void _action(string lvItemGuid, DisplyType type, string reust)
{
UpdataUi(delegate
{
IEnumerable<ListViewItem> enumerable = from ListViewItem c in base.listData.Items
where c.Tag.ToString() == lvItemGuid
select c;
Font font = new Font(Font, FontStyle.Bold);
foreach (ListViewItem item in enumerable)
{
switch (type)
{
case DisplyType.forbidden:
item.SubItems[6].Text = reust;
item.SubItems[6].Font = font;
item.SubItems[6].ForeColor = Color.Green;
break;
case DisplyType.xinxi:
item.SubItems[7].Text = reust;
break;
case DisplyType.error:
item.SubItems[6].Text = reust;
item.SubItems[6].Font = font;
item.SubItems[6].ForeColor = Color.Red;
break;
case DisplyType.chongzhi:
item.SubItems[6].Text = reust;
item.SubItems[6].ForeColor = Color.Black;
break;
}
}
});
}
public override void ReExecute_Click(object sender, EventArgs e)
{
if (AddRemoveFamilyMemberTask.Instance.TaskIsRun)
{
MessageBox.Show("请先停止");
return;
}
List<AppleAcount> list = new List<AppleAcount>();
foreach (ListViewItem selectedItem in base.listData.SelectedItems)
{
list.Add(new AppleAcount
{
lvItemGuid = selectedItem.Tag.ToString(),
appleId = selectedItem.SubItems[1].Text,
applePwd = selectedItem.SubItems[2].Text,
newAppleId = selectedItem.SubItems[3].Text,
newApplePopPwd = selectedItem.SubItems[4].Text,
overflow = selectedItem.SubItems[5].Text
});
}
RearTaskRun(list);
}
public override void TwoFactorItem_over_Click(string reust)
{
List<AppleAcount> list = new List<AppleAcount>();
foreach (ListViewItem selectedItem in base.listData.SelectedItems)
{
list.Add(new AppleAcount
{
lvItemGuid = selectedItem.Tag.ToString(),
appleId = selectedItem.SubItems[1].Text,
applePwd = selectedItem.SubItems[2].Text + reust,
newAppleId = selectedItem.SubItems[3].Text,
newApplePopPwd = selectedItem.SubItems[4].Text,
overflow = selectedItem.SubItems[5].Text
});
}
RearTaskRun(list);
}
private void btnAddRemoveFamilyMemberClre_Click(object sender, EventArgs e)
{
if (MessageBox.Show("确认删除列表数据吗", "提示", MessageBoxButtons.OKCancel) == DialogResult.OK)
{
base.listData.Items.Clear();
}
base.labCout.Text = string.Concat(base.listData.Items.Count);
}
private void btnAddRemoveFamilyMemberExper_Click(object sender, EventArgs e)
{
ExperList(base.listData);
}
private void btnAddRemoveFamilyMemberLog_Click(object sender, EventArgs e)
{
FromDBDataQuery fromDBDataQuery = new FromDBDataQuery();
fromDBDataQuery.sqlTitle = new Dictionary<string, string>
{
{ "value1", "账号|150" },
{ "value2", "密码|100" },
{ "value3", "成员账号|100" },
{ "value4", "成员密码|100" },
{ "value5", "类型/安全吗|80" },
{ "value6", "状态|60" },
{ "value7", "信息|150" }
};
fromDBDataQuery.type = "addRemoveFamily";
fromDBDataQuery.typeName = "添加或删除家庭成员记录";
fromDBDataQuery.Show();
}
protected override void Dispose(bool disposing)
{
if (disposing && components != null)
{
components.Dispose();
}
base.Dispose(disposing);
}
private void InitializeComponent()
{
this.groupBox9 = new System.Windows.Forms.GroupBox();
this.label2 = new System.Windows.Forms.Label();
this.textBox1 = new System.Windows.Forms.TextBox();
this.label1 = new System.Windows.Forms.Label();
this.textBox2 = new System.Windows.Forms.TextBox();
this.ckAddRemoveFamilyMember = new System.Windows.Forms.CheckBox();
this.labAddRemoveFamilyMemberInter = new System.Windows.Forms.Label();
this.label10 = new System.Windows.Forms.Label();
this.label13 = new System.Windows.Forms.Label();
this.groupBox10 = new System.Windows.Forms.GroupBox();
this.labAddRemoveFamilyMemberCount = new System.Windows.Forms.Label();
this.label16 = new System.Windows.Forms.Label();
this.btnAddRemoveFamilyMemberClre = new System.Windows.Forms.Button();
this.btnAddRemoveFamilyMemberLog = new System.Windows.Forms.Button();
this.btnAddRemoveFamilyMembernput = new System.Windows.Forms.Button();
this.btnAddRemoveFamilyMemberExper = new System.Windows.Forms.Button();
this.btnAddRemoveFamilyMemberStart = new System.Windows.Forms.Button();
this.groupBox12 = new System.Windows.Forms.GroupBox();
this.listAddRemoveFamilyMember = new AppleBatch_June.Views.DoubleBufferListView();
this.columnHeader8 = new System.Windows.Forms.ColumnHeader();
this.columnHeader9 = new System.Windows.Forms.ColumnHeader();
this.columnHeader10 = new System.Windows.Forms.ColumnHeader();
this.columnHeader4 = new System.Windows.Forms.ColumnHeader();
this.columnHeader2 = new System.Windows.Forms.ColumnHeader();
this.columnHeader3 = new System.Windows.Forms.ColumnHeader();
this.columnHeader1 = new System.Windows.Forms.ColumnHeader();
this.columnHeader14 = new System.Windows.Forms.ColumnHeader();
this.groupBox9.SuspendLayout();
this.groupBox10.SuspendLayout();
this.groupBox12.SuspendLayout();
base.SuspendLayout();
this.groupBox9.Controls.Add(this.label2);
this.groupBox9.Controls.Add(this.textBox1);
this.groupBox9.Controls.Add(this.label1);
this.groupBox9.Controls.Add(this.textBox2);
this.groupBox9.Controls.Add(this.ckAddRemoveFamilyMember);
this.groupBox9.Controls.Add(this.labAddRemoveFamilyMemberInter);
this.groupBox9.Controls.Add(this.label10);
this.groupBox9.Controls.Add(this.label13);
this.groupBox9.Font = new System.Drawing.Font("微软雅黑", 9f, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, 134);
this.groupBox9.Location = new System.Drawing.Point(445, 12);
this.groupBox9.Name = "groupBox9";
this.groupBox9.Size = new System.Drawing.Size(520, 126);
this.groupBox9.TabIndex = 23;
this.groupBox9.TabStop = false;
this.groupBox9.Text = "添加或者移除家庭成员 功能说明";
this.label2.AutoSize = true;
this.label2.Location = new System.Drawing.Point(145, 99);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(80, 17);
this.label2.TabIndex = 14;
this.label2.Text = "移除成员格式";
this.textBox1.BackColor = System.Drawing.SystemColors.ControlLightLight;
this.textBox1.Location = new System.Drawing.Point(233, 97);
this.textBox1.Name = "textBox1";
this.textBox1.ReadOnly = true;
this.textBox1.Size = new System.Drawing.Size(271, 23);
this.textBox1.TabIndex = 13;
this.textBox1.Text = "组织者账号----密码--家庭成员的Dsid";
this.label1.AutoSize = true;
this.label1.Location = new System.Drawing.Point(146, 71);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(80, 17);
this.label1.TabIndex = 12;
this.label1.Text = "添加成员格式";
this.textBox2.BackColor = System.Drawing.SystemColors.ControlLightLight;
this.textBox2.Location = new System.Drawing.Point(234, 68);
this.textBox2.Name = "textBox2";
this.textBox2.ReadOnly = true;
this.textBox2.Size = new System.Drawing.Size(271, 23);
this.textBox2.TabIndex = 11;
this.textBox2.Text = "组织者账号----密码--成员账号--密码--安全码\r\n";
this.ckAddRemoveFamilyMember.AutoSize = true;
this.ckAddRemoveFamilyMember.Font = new System.Drawing.Font("微软雅黑", 9f, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, 134);
this.ckAddRemoveFamilyMember.ForeColor = System.Drawing.Color.Red;
this.ckAddRemoveFamilyMember.Location = new System.Drawing.Point(18, 97);
this.ckAddRemoveFamilyMember.Name = "ckAddRemoveFamilyMember";
this.ckAddRemoveFamilyMember.Size = new System.Drawing.Size(111, 21);
this.ckAddRemoveFamilyMember.TabIndex = 10;
this.ckAddRemoveFamilyMember.Text = "使用随机IP代理";
this.ckAddRemoveFamilyMember.UseVisualStyleBackColor = true;
this.labAddRemoveFamilyMemberInter.AutoSize = true;
this.labAddRemoveFamilyMemberInter.Font = new System.Drawing.Font("微软雅黑", 10.5f, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, 134);
this.labAddRemoveFamilyMemberInter.ForeColor = System.Drawing.Color.Crimson;
this.labAddRemoveFamilyMemberInter.Location = new System.Drawing.Point(103, 71);
this.labAddRemoveFamilyMemberInter.Name = "labAddRemoveFamilyMemberInter";
this.labAddRemoveFamilyMemberInter.Size = new System.Drawing.Size(18, 19);
this.labAddRemoveFamilyMemberInter.TabIndex = 2;
this.labAddRemoveFamilyMemberInter.Text = "0";
this.label10.AutoSize = true;
this.label10.Location = new System.Drawing.Point(15, 73);
this.label10.Name = "label10";
this.label10.Size = new System.Drawing.Size(92, 17);
this.label10.TabIndex = 1;
this.label10.Text = "查询消耗点数:";
this.label13.AutoSize = true;
this.label13.Location = new System.Drawing.Point(11, 22);
this.label13.Name = "label13";
this.label13.Size = new System.Drawing.Size(502, 34);
this.label13.TabIndex = 0;
this.label13.Text = "需要组织者账号并且拥有支付方式的安全码才能添加成员移除家庭成员需要成员的Dsid。\r\n 该功能不支持多线程运行,仅支持单线程运行。";
this.groupBox10.Controls.Add(this.labAddRemoveFamilyMemberCount);
this.groupBox10.Controls.Add(this.label16);
this.groupBox10.Controls.Add(this.btnAddRemoveFamilyMemberClre);
this.groupBox10.Controls.Add(this.btnAddRemoveFamilyMemberLog);
this.groupBox10.Controls.Add(this.btnAddRemoveFamilyMembernput);
this.groupBox10.Controls.Add(this.btnAddRemoveFamilyMemberExper);
this.groupBox10.Controls.Add(this.btnAddRemoveFamilyMemberStart);
this.groupBox10.Location = new System.Drawing.Point(12, 12);
this.groupBox10.Name = "groupBox10";
this.groupBox10.Size = new System.Drawing.Size(427, 126);
this.groupBox10.TabIndex = 22;
this.groupBox10.TabStop = false;
this.groupBox10.Text = "操作";
this.labAddRemoveFamilyMemberCount.AutoSize = true;
this.labAddRemoveFamilyMemberCount.Font = new System.Drawing.Font("微软雅黑", 9f, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, 134);
this.labAddRemoveFamilyMemberCount.ForeColor = System.Drawing.Color.OrangeRed;
this.labAddRemoveFamilyMemberCount.Location = new System.Drawing.Point(282, 15);
this.labAddRemoveFamilyMemberCount.Name = "labAddRemoveFamilyMemberCount";
this.labAddRemoveFamilyMemberCount.Size = new System.Drawing.Size(15, 17);
this.labAddRemoveFamilyMemberCount.TabIndex = 7;
this.labAddRemoveFamilyMemberCount.Text = "0";
this.label16.AutoSize = true;
this.label16.Font = new System.Drawing.Font("微软雅黑", 9f, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, 134);
this.label16.Location = new System.Drawing.Point(179, 16);
this.label16.Name = "label16";
this.label16.Size = new System.Drawing.Size(95, 17);
this.label16.TabIndex = 6;
this.label16.Text = "列表中账号数量:";
this.btnAddRemoveFamilyMemberClre.Font = new System.Drawing.Font("微软雅黑", 9f, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, 134);
this.btnAddRemoveFamilyMemberClre.Location = new System.Drawing.Point(325, 75);
this.btnAddRemoveFamilyMemberClre.Name = "btnAddRemoveFamilyMemberClre";
this.btnAddRemoveFamilyMemberClre.Size = new System.Drawing.Size(96, 23);
this.btnAddRemoveFamilyMemberClre.TabIndex = 5;
this.btnAddRemoveFamilyMemberClre.Text = "清空账号列表";
this.btnAddRemoveFamilyMemberClre.UseVisualStyleBackColor = true;
this.btnAddRemoveFamilyMemberClre.Click += new System.EventHandler(btnAddRemoveFamilyMemberClre_Click);
this.btnAddRemoveFamilyMemberLog.Font = new System.Drawing.Font("微软雅黑", 9f, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, 134);
this.btnAddRemoveFamilyMemberLog.Location = new System.Drawing.Point(179, 42);
this.btnAddRemoveFamilyMemberLog.Name = "btnAddRemoveFamilyMemberLog";
this.btnAddRemoveFamilyMemberLog.Size = new System.Drawing.Size(140, 23);
this.btnAddRemoveFamilyMemberLog.TabIndex = 4;
this.btnAddRemoveFamilyMemberLog.Text = "家庭成员管理记录";
this.btnAddRemoveFamilyMemberLog.UseVisualStyleBackColor = true;
this.btnAddRemoveFamilyMemberLog.Click += new System.EventHandler(btnAddRemoveFamilyMemberLog_Click);
this.btnAddRemoveFamilyMembernput.Font = new System.Drawing.Font("微软雅黑", 9f, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, 134);
this.btnAddRemoveFamilyMembernput.Location = new System.Drawing.Point(179, 76);
this.btnAddRemoveFamilyMembernput.Name = "btnAddRemoveFamilyMembernput";
this.btnAddRemoveFamilyMembernput.Size = new System.Drawing.Size(140, 23);
this.btnAddRemoveFamilyMembernput.TabIndex = 3;
this.btnAddRemoveFamilyMembernput.Text = "账号输入";
this.btnAddRemoveFamilyMembernput.UseVisualStyleBackColor = true;
this.btnAddRemoveFamilyMembernput.Click += new System.EventHandler(btnAddRemoveFamilyMembernput_Click);
this.btnAddRemoveFamilyMemberExper.Font = new System.Drawing.Font("微软雅黑", 9f, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, 134);
this.btnAddRemoveFamilyMemberExper.Location = new System.Drawing.Point(325, 42);
this.btnAddRemoveFamilyMemberExper.Name = "btnAddRemoveFamilyMemberExper";
this.btnAddRemoveFamilyMemberExper.Size = new System.Drawing.Size(96, 23);
this.btnAddRemoveFamilyMemberExper.TabIndex = 2;
this.btnAddRemoveFamilyMemberExper.Text = "导出账号";
this.btnAddRemoveFamilyMemberExper.UseVisualStyleBackColor = true;
this.btnAddRemoveFamilyMemberExper.Click += new System.EventHandler(btnAddRemoveFamilyMemberExper_Click);
this.btnAddRemoveFamilyMemberStart.Font = new System.Drawing.Font("微软雅黑", 10.5f, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, 134);
this.btnAddRemoveFamilyMemberStart.ForeColor = System.Drawing.Color.Green;
this.btnAddRemoveFamilyMemberStart.Location = new System.Drawing.Point(18, 33);
this.btnAddRemoveFamilyMemberStart.Name = "btnAddRemoveFamilyMemberStart";
this.btnAddRemoveFamilyMemberStart.Size = new System.Drawing.Size(110, 65);
this.btnAddRemoveFamilyMemberStart.TabIndex = 1;
this.btnAddRemoveFamilyMemberStart.Text = "开始执行";
this.btnAddRemoveFamilyMemberStart.UseVisualStyleBackColor = true;
this.btnAddRemoveFamilyMemberStart.Click += new System.EventHandler(btnAddRemoveFamilyMemberStart_Click);
this.groupBox12.Controls.Add(this.listAddRemoveFamilyMember);
this.groupBox12.Location = new System.Drawing.Point(9, 144);
this.groupBox12.Name = "groupBox12";
this.groupBox12.Size = new System.Drawing.Size(956, 408);
this.groupBox12.TabIndex = 21;
this.groupBox12.TabStop = false;
this.groupBox12.Text = "iCloud账号列表";
this.listAddRemoveFamilyMember.Columns.AddRange(new System.Windows.Forms.ColumnHeader[8] { this.columnHeader8, this.columnHeader9, this.columnHeader10, this.columnHeader4, this.columnHeader2, this.columnHeader3, this.columnHeader1, this.columnHeader14 });
this.listAddRemoveFamilyMember.Dock = System.Windows.Forms.DockStyle.Fill;
this.listAddRemoveFamilyMember.Font = new System.Drawing.Font("微软雅黑", 9f, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, 134);
this.listAddRemoveFamilyMember.FullRowSelect = true;
this.listAddRemoveFamilyMember.HideSelection = false;
this.listAddRemoveFamilyMember.Location = new System.Drawing.Point(3, 17);
this.listAddRemoveFamilyMember.Name = "listAddRemoveFamilyMember";
this.listAddRemoveFamilyMember.Size = new System.Drawing.Size(950, 388);
this.listAddRemoveFamilyMember.TabIndex = 0;
this.listAddRemoveFamilyMember.UseCompatibleStateImageBehavior = false;
this.listAddRemoveFamilyMember.View = System.Windows.Forms.View.Details;
this.columnHeader8.Text = "序号";
this.columnHeader9.Text = "账号";
this.columnHeader9.Width = 150;
this.columnHeader10.Text = "密码";
this.columnHeader10.Width = 100;
this.columnHeader4.Text = "成员账号";
this.columnHeader4.Width = 150;
this.columnHeader2.Text = "成员密码";
this.columnHeader2.Width = 100;
this.columnHeader3.Text = "类型/安全码";
this.columnHeader3.Width = 80;
this.columnHeader1.Text = "状态";
this.columnHeader14.Text = "信息";
this.columnHeader14.Width = 230;
base.AutoScaleDimensions = new System.Drawing.SizeF(6f, 12f);
base.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
base.ClientSize = new System.Drawing.Size(977, 567);
base.Controls.Add(this.groupBox9);
base.Controls.Add(this.groupBox10);
base.Controls.Add(this.groupBox12);
base.MaximizeBox = false;
base.Name = "FromAddRemoveFamilyMember";
base.ShowIcon = false;
base.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
this.Text = "添加或者移除家庭成员";
base.Load += new System.EventHandler(FromAddRemoveFamilyMember_Load);
this.groupBox9.ResumeLayout(false);
this.groupBox9.PerformLayout();
this.groupBox10.ResumeLayout(false);
this.groupBox10.PerformLayout();
this.groupBox12.ResumeLayout(false);
base.ResumeLayout(false);
}
}
}