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

585 lines
23 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 FormAuthBalance : BaseForm
{
private IContainer components;
private GroupBox groupBox71;
private CheckBox ckAuthBalenceVpn;
private Label labAuthBalenceCount;
private Label label108;
private Label label109;
private GroupBox groupBox69;
private DoubleBufferListView lvAuthBalence;
private ColumnHeader columnHeader127;
private ColumnHeader columnHeader129;
private ColumnHeader columnHeader130;
private ColumnHeader columnHeader131;
private ColumnHeader columnHeader132;
private ColumnHeader columnHeader133;
private ColumnHeader columnHeader136;
private ColumnHeader columnHeader134;
private ColumnHeader columnHeader135;
private GroupBox groupBox70;
private Label label106;
private Label label107;
private TextBox textBox15;
private GroupBox groupBox72;
private Label labAuthBalanceLvCount;
private Label label111;
private Button btnAuthBalanceClear;
private Button btnAuthBalanceLog;
private Button btnAuthBalenceInput;
private Button btnAuthBalanceExprt;
private Button btnAuthBalanceStart;
public FormAuthBalance()
: base("密保查询余额", QueryAuthBalanceTask.Instance)
{
InitializeComponent();
}
private void btnAuthBalenceInput_Click(object sender, EventArgs e)
{
FromInputAcount fromInputAcount = new FromInputAcount();
fromInputAcount.tipMssage = textBox15.Text;
fromInputAcount.isOpenSysVpn = ckAuthBalenceVpn.Checked;
if (fromInputAcount.ShowDialog() == DialogResult.OK)
{
List<AppleAcount> list = AppleUtlis.accountInput(fromInputAcount.StrInput, new string[5] { "appleId", "appleQt1", "appleQt2", "appleQt3", "applePwd" });
lvAuthBalence.ListViewItemSorter = new ListViewItemComparer(0, 1);
lvAuthBalence.Sort();
int num = 0;
if (lvAuthBalence.Items.Count > 0 && int.TryParse(lvAuthBalence.Items[lvAuthBalence.Items.Count - 1].SubItems[0].Text, out var result))
{
num = result;
}
List<ListViewItem> list2 = new List<ListViewItem>();
foreach (AppleAcount item in list)
{
if (!string.IsNullOrEmpty(item.appleQt1) && !string.IsNullOrEmpty(item.appleQt2) && !string.IsNullOrEmpty(item.appleQt3))
{
num++;
ListViewItem listViewItem = new ListViewItem(num.ToString());
listViewItem.SubItems.Add(item.appleId);
listViewItem.SubItems.Add(item.applePwd);
listViewItem.SubItems.Add(string.IsNullOrEmpty(item.appleQt1) ? "-" : item.appleQt1);
listViewItem.SubItems.Add(string.IsNullOrEmpty(item.appleQt2) ? "-" : item.appleQt2);
listViewItem.SubItems.Add(string.IsNullOrEmpty(item.appleQt3) ? "-" : item.appleQt3);
listViewItem.SubItems.Add("-");
listViewItem.SubItems.Add("-");
listViewItem.SubItems.Add("-");
listViewItem.UseItemStyleForSubItems = false;
listViewItem.Tag = item.lvItemGuid;
list2.Add(listViewItem);
}
}
lvAuthBalence.Items.AddRange(list2.ToArray());
}
labAuthBalanceLvCount.Text = string.Concat(lvAuthBalence.Items.Count);
}
private void btnAuthBalanceLog_Click(object sender, EventArgs e)
{
FromDBDataQuery fromDBDataQuery = new FromDBDataQuery();
fromDBDataQuery.sqlTitle = new Dictionary<string, string>
{
{ "value1", "账号|120" },
{ "value2", "密码|100" },
{ "value3", "问题1|60" },
{ "value4", "问题2|60" },
{ "value5", "问题3|60" },
{ "value6", "国家|80" },
{ "value7", "余额|100" },
{ "value8", "信息|150" }
};
fromDBDataQuery.type = "authBalance";
fromDBDataQuery.typeName = "Apple密保查余额记录";
fromDBDataQuery.Show();
}
private void btnAuthBalanceExprt_Click(object sender, EventArgs e)
{
ExperList(lvAuthBalence);
}
private void btnAuthBalanceClear_Click(object sender, EventArgs e)
{
if (MessageBox.Show("确认删除列表数据吗", "提示", MessageBoxButtons.OKCancel) == DialogResult.OK)
{
lvAuthBalence.Items.Clear();
}
labAuthBalanceLvCount.Text = string.Concat(lvAuthBalence.Items.Count);
}
private void FormAuthBalance_Load(object sender, EventArgs e)
{
labAuthBalenceCount.Text = AppSysConfig.getTypeById(22).consNum.ToString();
ckAuthBalenceVpn.Checked = ((ConfigUtlis.getConfigValue("ckAuthBalenceVpn") == "True") ? true : false);
base.startBtn = btnAuthBalanceStart;
base.labCout = labAuthBalanceLvCount;
base.listData = lvAuthBalence;
InitLv(lvAuthBalence);
BindMenuStrip(addTwoFactor: false, null, shouItems: true);
}
public override void ReExecute_Click(object sender, EventArgs e)
{
if (QueryAuthBalanceTask.Instance.TaskIsRun)
{
MessageBox.Show("请先停止");
return;
}
List<AppleAcount> list = new List<AppleAcount>();
foreach (ListViewItem selectedItem in lvAuthBalence.SelectedItems)
{
list.Add(new AppleAcount
{
appleId = selectedItem.SubItems[1].Text,
applePwd = selectedItem.SubItems[2].Text,
appleQt1 = selectedItem.SubItems[3].Text,
appleQt2 = selectedItem.SubItems[4].Text,
appleQt3 = selectedItem.SubItems[5].Text,
guidTag = (selectedItem.Tag as string)
});
}
TaskRunAuthBalanceQuery(list);
}
private void btnAuthBalanceStart_Click(object sender, EventArgs e)
{
if (!QueryAuthBalanceTask.Instance.isRun && !QueryAuthBalanceTask.Instance.TaskIsRun)
{
List<AppleAcount> apples = (from ListViewItem c in lvAuthBalence.Items
where c.SubItems[7].Text == "-"
select new AppleAcount
{
appleId = c.SubItems[1].Text,
applePwd = c.SubItems[2].Text,
appleQt1 = c.SubItems[3].Text,
appleQt2 = c.SubItems[4].Text,
appleQt3 = c.SubItems[5].Text,
guidTag = (c.Tag as string)
}).ToList();
TaskRunAuthBalanceQuery(apples);
return;
}
QueryAuthBalanceTask.Instance.Stop();
if (!base.IsDisposed)
{
Invoke((Action)delegate
{
btnAuthBalanceStart.Text = "正在停止";
btnAuthBalanceStart.ForeColor = Color.Red;
});
}
}
public void TaskRunAuthBalanceQuery(List<AppleAcount> apples)
{
int id = 22;
int count = apples.Count;
if (AppSysConfig.integral < count * AppSysConfig.getTypeById(22).consNum)
{
MessageBox.Show("账号点数不足 , 执行账号数量:" + count + " ,至少需要 " + count * AppSysConfig.getTypeById(id).consNum + " 点数。");
return;
}
ConfigUtlis.saveConfigKey("ckAuthBalenceVpn", ckAuthBalenceVpn.Checked.ToString());
QueryAuthBalanceTask.Instance.AppleQueryAuthBalanceTask(2, ckAuthBalenceVpn.Checked, apples, delegate
{
if (!base.IsDisposed)
{
Invoke((Action)delegate
{
btnAuthBalanceStart.Enabled = true;
btnAuthBalanceStart.Text = "停止";
btnAuthBalanceStart.ForeColor = Color.Red;
});
}
}, delegate
{
Dictionary<string, object> postData = new Dictionary<string, object>
{
{
"token",
AppSysConfig.userToken
},
{ "type", 2 }
};
new ApiNetReq().doPost(postData, "ApiProxyIp");
if (!base.IsDisposed)
{
Invoke((Action)delegate
{
btnAuthBalanceStart.Text = "开始执行";
btnAuthBalanceStart.ForeColor = Color.Green;
});
}
}, delegate(string guidTag)
{
if (!base.IsDisposed)
{
Invoke((Action)delegate
{
ListViewItem listViewItem = (from ListViewItem c in lvAuthBalence.Items
where c.Tag.ToString() == guidTag
select c).FirstOrDefault();
if (listViewItem != null)
{
SqliteHelper.ExecuteInsert("itunes_db", new Dictionary<string, string>
{
{ "type", "authBalance" },
{
"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
},
{
"value8",
listViewItem.SubItems[8].Text
}
});
}
});
}
}, delegate(string guidTag, DisplyType ditype, string distReust)
{
if (!base.IsDisposed)
{
Invoke((Action)delegate
{
IEnumerable<ListViewItem> enumerable = from ListViewItem c in lvAuthBalence.Items
where c.Tag.ToString() == guidTag
select c;
new Font(Font, FontStyle.Bold);
foreach (ListViewItem item in enumerable)
{
switch (ditype)
{
case DisplyType.area:
item.SubItems[6].Text = distReust;
break;
case DisplyType.xinxi:
item.SubItems[8].Text = distReust;
break;
case DisplyType.balance:
item.SubItems[7].Text = distReust;
break;
case DisplyType.chongzhi:
item.SubItems[7].Text = distReust;
item.SubItems[6].Text = distReust;
break;
}
}
});
}
});
}
protected override void Dispose(bool disposing)
{
if (disposing && components != null)
{
components.Dispose();
}
base.Dispose(disposing);
}
private void InitializeComponent()
{
this.groupBox71 = new System.Windows.Forms.GroupBox();
this.ckAuthBalenceVpn = new System.Windows.Forms.CheckBox();
this.labAuthBalenceCount = new System.Windows.Forms.Label();
this.label108 = new System.Windows.Forms.Label();
this.label109 = new System.Windows.Forms.Label();
this.groupBox69 = new System.Windows.Forms.GroupBox();
this.lvAuthBalence = new AppleBatch_June.Views.DoubleBufferListView();
this.columnHeader127 = new System.Windows.Forms.ColumnHeader();
this.columnHeader129 = new System.Windows.Forms.ColumnHeader();
this.columnHeader130 = new System.Windows.Forms.ColumnHeader();
this.columnHeader131 = new System.Windows.Forms.ColumnHeader();
this.columnHeader132 = new System.Windows.Forms.ColumnHeader();
this.columnHeader133 = new System.Windows.Forms.ColumnHeader();
this.columnHeader136 = new System.Windows.Forms.ColumnHeader();
this.columnHeader134 = new System.Windows.Forms.ColumnHeader();
this.columnHeader135 = new System.Windows.Forms.ColumnHeader();
this.groupBox70 = new System.Windows.Forms.GroupBox();
this.label106 = new System.Windows.Forms.Label();
this.label107 = new System.Windows.Forms.Label();
this.textBox15 = new System.Windows.Forms.TextBox();
this.groupBox72 = new System.Windows.Forms.GroupBox();
this.labAuthBalanceLvCount = new System.Windows.Forms.Label();
this.label111 = new System.Windows.Forms.Label();
this.btnAuthBalanceClear = new System.Windows.Forms.Button();
this.btnAuthBalanceLog = new System.Windows.Forms.Button();
this.btnAuthBalenceInput = new System.Windows.Forms.Button();
this.btnAuthBalanceExprt = new System.Windows.Forms.Button();
this.btnAuthBalanceStart = new System.Windows.Forms.Button();
this.groupBox71.SuspendLayout();
this.groupBox69.SuspendLayout();
this.groupBox70.SuspendLayout();
this.groupBox72.SuspendLayout();
base.SuspendLayout();
this.groupBox71.Controls.Add(this.ckAuthBalenceVpn);
this.groupBox71.Controls.Add(this.labAuthBalenceCount);
this.groupBox71.Controls.Add(this.label108);
this.groupBox71.Controls.Add(this.label109);
this.groupBox71.Font = new System.Drawing.Font("微软雅黑", 9f, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, 134);
this.groupBox71.Location = new System.Drawing.Point(427, 18);
this.groupBox71.Name = "groupBox71";
this.groupBox71.Size = new System.Drawing.Size(275, 124);
this.groupBox71.TabIndex = 23;
this.groupBox71.TabStop = false;
this.groupBox71.Text = "功能说明";
this.ckAuthBalenceVpn.AutoSize = true;
this.ckAuthBalenceVpn.Font = new System.Drawing.Font("微软雅黑", 9f, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, 134);
this.ckAuthBalenceVpn.ForeColor = System.Drawing.Color.Red;
this.ckAuthBalenceVpn.Location = new System.Drawing.Point(18, 84);
this.ckAuthBalenceVpn.Name = "ckAuthBalenceVpn";
this.ckAuthBalenceVpn.Size = new System.Drawing.Size(111, 21);
this.ckAuthBalenceVpn.TabIndex = 10;
this.ckAuthBalenceVpn.Text = "使用随机IP代理";
this.ckAuthBalenceVpn.UseVisualStyleBackColor = true;
this.labAuthBalenceCount.AutoSize = true;
this.labAuthBalenceCount.Font = new System.Drawing.Font("微软雅黑", 10.5f, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, 134);
this.labAuthBalenceCount.ForeColor = System.Drawing.Color.Crimson;
this.labAuthBalenceCount.Location = new System.Drawing.Point(103, 52);
this.labAuthBalenceCount.Name = "labAuthBalenceCount";
this.labAuthBalenceCount.Size = new System.Drawing.Size(18, 19);
this.labAuthBalenceCount.TabIndex = 2;
this.labAuthBalenceCount.Text = "0";
this.label108.AutoSize = true;
this.label108.Location = new System.Drawing.Point(15, 54);
this.label108.Name = "label108";
this.label108.Size = new System.Drawing.Size(92, 17);
this.label108.TabIndex = 1;
this.label108.Text = "查询消耗点数:";
this.label109.AutoSize = true;
this.label109.Location = new System.Drawing.Point(15, 25);
this.label109.Name = "label109";
this.label109.Size = new System.Drawing.Size(168, 17);
this.label109.TabIndex = 0;
this.label109.Text = "可查询双禁,锁定 账号的余额";
this.groupBox69.Anchor = System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right;
this.groupBox69.Controls.Add(this.lvAuthBalence);
this.groupBox69.Location = new System.Drawing.Point(15, 161);
this.groupBox69.Name = "groupBox69";
this.groupBox69.Size = new System.Drawing.Size(1031, 428);
this.groupBox69.TabIndex = 22;
this.groupBox69.TabStop = false;
this.groupBox69.Text = "Apple账号列表";
this.lvAuthBalence.Columns.AddRange(new System.Windows.Forms.ColumnHeader[9] { this.columnHeader127, this.columnHeader129, this.columnHeader130, this.columnHeader131, this.columnHeader132, this.columnHeader133, this.columnHeader136, this.columnHeader134, this.columnHeader135 });
this.lvAuthBalence.Dock = System.Windows.Forms.DockStyle.Fill;
this.lvAuthBalence.Font = new System.Drawing.Font("微软雅黑", 9f, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, 134);
this.lvAuthBalence.FullRowSelect = true;
this.lvAuthBalence.HideSelection = false;
this.lvAuthBalence.Location = new System.Drawing.Point(3, 17);
this.lvAuthBalence.Name = "lvAuthBalence";
this.lvAuthBalence.Size = new System.Drawing.Size(1025, 408);
this.lvAuthBalence.TabIndex = 0;
this.lvAuthBalence.UseCompatibleStateImageBehavior = false;
this.lvAuthBalence.View = System.Windows.Forms.View.Details;
this.columnHeader127.Text = "序号";
this.columnHeader129.Text = "账号";
this.columnHeader129.Width = 200;
this.columnHeader130.Text = "密码";
this.columnHeader130.Width = 150;
this.columnHeader131.Text = "问题1";
this.columnHeader131.Width = 70;
this.columnHeader132.Text = "问题2";
this.columnHeader132.Width = 80;
this.columnHeader133.Text = "问题3";
this.columnHeader133.Width = 80;
this.columnHeader136.Text = "国家";
this.columnHeader136.Width = 80;
this.columnHeader134.Text = "余额";
this.columnHeader134.Width = 100;
this.columnHeader135.Text = "信息";
this.columnHeader135.Width = 200;
this.groupBox70.Controls.Add(this.label106);
this.groupBox70.Controls.Add(this.label107);
this.groupBox70.Controls.Add(this.textBox15);
this.groupBox70.Font = new System.Drawing.Font("微软雅黑", 9f, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, 134);
this.groupBox70.Location = new System.Drawing.Point(708, 18);
this.groupBox70.Name = "groupBox70";
this.groupBox70.Size = new System.Drawing.Size(338, 130);
this.groupBox70.TabIndex = 21;
this.groupBox70.TabStop = false;
this.groupBox70.Text = "操作说明";
this.label106.AutoSize = true;
this.label106.Location = new System.Drawing.Point(8, 80);
this.label106.Name = "label106";
this.label106.Size = new System.Drawing.Size(259, 17);
this.label106.TabIndex = 8;
this.label106.Text = "如遇多次失败一般是IP被封请开启随机代理";
this.label107.AutoSize = true;
this.label107.Location = new System.Drawing.Point(6, 25);
this.label107.Name = "label107";
this.label107.Size = new System.Drawing.Size(80, 17);
this.label107.TabIndex = 7;
this.label107.Text = "账号导入格式";
this.textBox15.BackColor = System.Drawing.SystemColors.ControlLightLight;
this.textBox15.Location = new System.Drawing.Point(12, 48);
this.textBox15.Name = "textBox15";
this.textBox15.ReadOnly = true;
this.textBox15.Size = new System.Drawing.Size(302, 23);
this.textBox15.TabIndex = 6;
this.textBox15.Text = "xxx@xx.com----密码-答案1-答案2-答案3";
this.groupBox72.Controls.Add(this.labAuthBalanceLvCount);
this.groupBox72.Controls.Add(this.label111);
this.groupBox72.Controls.Add(this.btnAuthBalanceClear);
this.groupBox72.Controls.Add(this.btnAuthBalanceLog);
this.groupBox72.Controls.Add(this.btnAuthBalenceInput);
this.groupBox72.Controls.Add(this.btnAuthBalanceExprt);
this.groupBox72.Controls.Add(this.btnAuthBalanceStart);
this.groupBox72.Location = new System.Drawing.Point(15, 18);
this.groupBox72.Name = "groupBox72";
this.groupBox72.Size = new System.Drawing.Size(406, 130);
this.groupBox72.TabIndex = 20;
this.groupBox72.TabStop = false;
this.groupBox72.Text = "操作";
this.labAuthBalanceLvCount.AutoSize = true;
this.labAuthBalanceLvCount.Font = new System.Drawing.Font("微软雅黑", 9f, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, 134);
this.labAuthBalanceLvCount.ForeColor = System.Drawing.Color.OrangeRed;
this.labAuthBalanceLvCount.Location = new System.Drawing.Point(255, 15);
this.labAuthBalanceLvCount.Name = "labAuthBalanceLvCount";
this.labAuthBalanceLvCount.Size = new System.Drawing.Size(15, 17);
this.labAuthBalanceLvCount.TabIndex = 7;
this.labAuthBalanceLvCount.Text = "0";
this.label111.AutoSize = true;
this.label111.Font = new System.Drawing.Font("微软雅黑", 9f, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, 134);
this.label111.Location = new System.Drawing.Point(152, 16);
this.label111.Name = "label111";
this.label111.Size = new System.Drawing.Size(95, 17);
this.label111.TabIndex = 6;
this.label111.Text = "列表中账号数量:";
this.btnAuthBalanceClear.Font = new System.Drawing.Font("微软雅黑", 9f, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, 134);
this.btnAuthBalanceClear.Location = new System.Drawing.Point(298, 75);
this.btnAuthBalanceClear.Name = "btnAuthBalanceClear";
this.btnAuthBalanceClear.Size = new System.Drawing.Size(96, 23);
this.btnAuthBalanceClear.TabIndex = 5;
this.btnAuthBalanceClear.Text = "清空账号列表";
this.btnAuthBalanceClear.UseVisualStyleBackColor = true;
this.btnAuthBalanceClear.Click += new System.EventHandler(btnAuthBalanceClear_Click);
this.btnAuthBalanceLog.Font = new System.Drawing.Font("微软雅黑", 9f, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, 134);
this.btnAuthBalanceLog.Location = new System.Drawing.Point(152, 42);
this.btnAuthBalanceLog.Name = "btnAuthBalanceLog";
this.btnAuthBalanceLog.Size = new System.Drawing.Size(140, 23);
this.btnAuthBalanceLog.TabIndex = 4;
this.btnAuthBalanceLog.Text = "余额查询记录";
this.btnAuthBalanceLog.UseVisualStyleBackColor = true;
this.btnAuthBalanceLog.Click += new System.EventHandler(btnAuthBalanceLog_Click);
this.btnAuthBalenceInput.Font = new System.Drawing.Font("微软雅黑", 9f, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, 134);
this.btnAuthBalenceInput.Location = new System.Drawing.Point(152, 76);
this.btnAuthBalenceInput.Name = "btnAuthBalenceInput";
this.btnAuthBalenceInput.Size = new System.Drawing.Size(140, 23);
this.btnAuthBalenceInput.TabIndex = 3;
this.btnAuthBalenceInput.Text = "账号输入";
this.btnAuthBalenceInput.UseVisualStyleBackColor = true;
this.btnAuthBalenceInput.Click += new System.EventHandler(btnAuthBalenceInput_Click);
this.btnAuthBalanceExprt.Font = new System.Drawing.Font("微软雅黑", 9f, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, 134);
this.btnAuthBalanceExprt.Location = new System.Drawing.Point(298, 42);
this.btnAuthBalanceExprt.Name = "btnAuthBalanceExprt";
this.btnAuthBalanceExprt.Size = new System.Drawing.Size(96, 23);
this.btnAuthBalanceExprt.TabIndex = 2;
this.btnAuthBalanceExprt.Text = "导出账号";
this.btnAuthBalanceExprt.UseVisualStyleBackColor = true;
this.btnAuthBalanceExprt.Click += new System.EventHandler(btnAuthBalanceExprt_Click);
this.btnAuthBalanceStart.Font = new System.Drawing.Font("微软雅黑", 10.5f, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, 134);
this.btnAuthBalanceStart.ForeColor = System.Drawing.Color.Green;
this.btnAuthBalanceStart.Location = new System.Drawing.Point(18, 33);
this.btnAuthBalanceStart.Name = "btnAuthBalanceStart";
this.btnAuthBalanceStart.Size = new System.Drawing.Size(110, 65);
this.btnAuthBalanceStart.TabIndex = 1;
this.btnAuthBalanceStart.Text = "开始执行";
this.btnAuthBalanceStart.UseVisualStyleBackColor = true;
this.btnAuthBalanceStart.Click += new System.EventHandler(btnAuthBalanceStart_Click);
base.AutoScaleDimensions = new System.Drawing.SizeF(6f, 12f);
base.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
base.ClientSize = new System.Drawing.Size(1058, 603);
base.Controls.Add(this.groupBox71);
base.Controls.Add(this.groupBox69);
base.Controls.Add(this.groupBox70);
base.Controls.Add(this.groupBox72);
base.MaximizeBox = false;
base.Name = "FormAuthBalance";
base.ShowIcon = false;
base.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
this.Text = "Apple 密保查余额";
base.Load += new System.EventHandler(FormAuthBalance_Load);
this.groupBox71.ResumeLayout(false);
this.groupBox71.PerformLayout();
this.groupBox69.ResumeLayout(false);
this.groupBox70.ResumeLayout(false);
this.groupBox70.PerformLayout();
this.groupBox72.ResumeLayout(false);
this.groupBox72.PerformLayout();
base.ResumeLayout(false);
}
}
}