diff --git a/Source/GrasscutterTools/Forms/FormMain.Designer.cs b/Source/GrasscutterTools/Forms/FormMain.Designer.cs
index e074b4c..7f1d440 100644
--- a/Source/GrasscutterTools/Forms/FormMain.Designer.cs
+++ b/Source/GrasscutterTools/Forms/FormMain.Designer.cs
@@ -421,6 +421,7 @@ namespace GrasscutterTools.Forms
//
resources.ApplyResources(this.TxtCommand, "TxtCommand");
this.TxtCommand.Name = "TxtCommand";
+ this.TxtCommand.KeyDown += new System.Windows.Forms.KeyEventHandler(this.TxtCommand_KeyDown);
//
// BtnCopy
//
@@ -603,6 +604,7 @@ namespace GrasscutterTools.Forms
0,
0,
0});
+ this.NUDRemotePlayerId.KeyDown += new System.Windows.Forms.KeyEventHandler(this.NUDRemotePlayerId_KeyDown);
//
// BtnConnectOpenCommand
//
@@ -642,6 +644,7 @@ namespace GrasscutterTools.Forms
0,
0,
0});
+ this.NUDVerificationCode.KeyDown += new System.Windows.Forms.KeyEventHandler(this.NUDVerificationCode_KeyDown);
//
// LblRemotePlayerId
//
@@ -669,6 +672,7 @@ namespace GrasscutterTools.Forms
//
resources.ApplyResources(this.TxtToken, "TxtToken");
this.TxtToken.Name = "TxtToken";
+ this.TxtToken.KeyDown += new System.Windows.Forms.KeyEventHandler(this.TxtToken_KeyDown);
//
// LblToken
//
@@ -684,6 +688,7 @@ namespace GrasscutterTools.Forms
//
resources.ApplyResources(this.TxtHost, "TxtHost");
this.TxtHost.Name = "TxtHost";
+ this.TxtHost.KeyDown += new System.Windows.Forms.KeyEventHandler(this.TxtHost_KeyDown);
//
// BtnQueryServerStatus
//
@@ -2626,6 +2631,7 @@ namespace GrasscutterTools.Forms
//
resources.ApplyResources(this.TxtCustomName, "TxtCustomName");
this.TxtCustomName.Name = "TxtCustomName";
+ this.TxtCustomName.KeyDown += new System.Windows.Forms.KeyEventHandler(this.TxtCustomName_KeyDown);
//
// TPHome
//
diff --git a/Source/GrasscutterTools/Forms/FormMain.cs b/Source/GrasscutterTools/Forms/FormMain.cs
index 3a1a6df..db838ed 100644
--- a/Source/GrasscutterTools/Forms/FormMain.cs
+++ b/Source/GrasscutterTools/Forms/FormMain.cs
@@ -425,6 +425,14 @@ namespace GrasscutterTools.Forms
}
}
+ ///
+ /// 自定义命令文本框回车时触发
+ ///
+ private void TxtCustomName_KeyDown(object sender, KeyEventArgs e)
+ {
+ if (e.KeyCode == Keys.Enter) BtnSaveCustomCommand_Click(BtnSaveCustomCommand, e);
+ }
+
///
/// 点击保存自定义命令列表时触发
///
@@ -1938,11 +1946,19 @@ namespace GrasscutterTools.Forms
/// 命令
private void SetCommand(string command)
{
+ var oldCommand = TxtCommand.Text;
TxtCommand.Text = command;
if (ChkAutoCopy.Checked)
CopyCommand();
- if (ModifierKeys == Keys.Control)
+ if (ModifierKeys == Keys.Shift)
+ {
OnOpenCommandInvoke();
+ TxtCommand.Text = oldCommand;
+ }
+ else if (ModifierKeys == Keys.Control)
+ {
+ OnOpenCommandInvoke();
+ }
}
///
@@ -1976,6 +1992,14 @@ namespace GrasscutterTools.Forms
Clipboard.SetText(TxtCommand.Text);
}
+ ///
+ /// 在命令行内按下回车时直接执行
+ ///
+ private void TxtCommand_KeyDown(object sender, KeyEventArgs e)
+ {
+ if (e.KeyCode == Keys.Enter) OnOpenCommandInvoke();
+ }
+
///
/// 开放命令执行时触发
///
@@ -1990,15 +2014,16 @@ namespace GrasscutterTools.Forms
private async void BtnInvokeOpenCommand_Click(object sender, EventArgs e)
{
if (!BtnInvokeOpenCommand.Enabled) return;
- if (TxtCommand.Text.Length < 2)
+ var cmd = TxtCommand.Text;
+ if (cmd.Length < 2)
{
ShowTip(Resources.CommandContentCannotBeEmpty, TxtCommand);
return;
}
- if (TxtCommand.Text.IndexOf('|') == -1)
- await RunCommands(FormatCommand(TxtCommand.Text));
+ if (cmd.IndexOf('|') == -1)
+ await RunCommands(FormatCommand(cmd));
else
- await RunCommands(TxtCommand.Text.Split('|').Select(it => FormatCommand(it)).ToArray());
+ await RunCommands(cmd.Split('|').Select(it => FormatCommand(it)).ToArray());
}
///
@@ -2267,7 +2292,15 @@ namespace GrasscutterTools.Forms
else
LblPlayerCount.Text = status.PlayerCount.ToString();
}
-
+
+ ///
+ /// 输入服务器地址按下回车时触发
+ ///
+ private void TxtHost_KeyDown(object sender, KeyEventArgs e)
+ {
+ if (e.KeyCode == Keys.Enter) BtnQueryServerStatus_Click(BtnQueryServerStatus, e);
+ }
+
///
/// 点击查询服务器状态按钮时触发
///
@@ -2313,6 +2346,14 @@ namespace GrasscutterTools.Forms
}
}
+ ///
+ /// 玩家ID输入框按下回车时触发
+ ///
+ private void NUDRemotePlayerId_KeyDown(object sender, KeyEventArgs e)
+ {
+ if (e.KeyCode == Keys.Enter) BtnSendVerificationCode_Click(BtnSendVerificationCode, e);
+ }
+
///
/// 点击发送校验码按钮时触发
///
@@ -2347,6 +2388,14 @@ namespace GrasscutterTools.Forms
}
}
+ ///
+ /// 验证码输入框按下回车时触发
+ ///
+ private void NUDVerificationCode_KeyDown(object sender, KeyEventArgs e)
+ {
+ if (e.KeyCode == Keys.Enter) BtnConnectOpenCommand_Click(BtnConnectOpenCommand, e);
+ }
+
///
/// 点击连接到开放命令按钮时触发
///
@@ -2375,6 +2424,14 @@ namespace GrasscutterTools.Forms
}
}
+ ///
+ /// Token 输入框按下回车时触发
+ ///
+ private void TxtToken_KeyDown(object sender, KeyEventArgs e)
+ {
+ if (e.KeyCode == Keys.Enter) BtnConsoleConnect_Click(BtnConsoleConnect, e);
+ }
+
///
/// 点击控制台连接按钮时触发
///
diff --git a/Source/GrasscutterTools/Forms/FormMain.resx b/Source/GrasscutterTools/Forms/FormMain.resx
index 0b93554..b27e372 100644
--- a/Source/GrasscutterTools/Forms/FormMain.resx
+++ b/Source/GrasscutterTools/Forms/FormMain.resx
@@ -210,6 +210,21 @@
Bottom, Left, Right
+
+ NoControl
+
+
+ 6, 22
+
+
+ 75, 23
+
+
+ 0
+
+
+ 执行(F5)
+
BtnInvokeOpenCommand
@@ -249,192 +264,6 @@
2
-
- NoControl
-
-
- 6, 22
-
-
- 75, 23
-
-
- 0
-
-
- 执行(F5)
-
-
- BtnInvokeOpenCommand
-
-
- System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- GrpCommand
-
-
- 0
-
-
- LnkLinks
-
-
- System.Windows.Forms.LinkLabel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- TPRemoteCall
-
-
- 0
-
-
- LnkGOODHelp
-
-
- System.Windows.Forms.LinkLabel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- TPRemoteCall
-
-
- 1
-
-
- LnkInventoryKamera
-
-
- System.Windows.Forms.LinkLabel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- TPRemoteCall
-
-
- 2
-
-
- LblGOODHelp
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- TPRemoteCall
-
-
- 3
-
-
- ButtonOpenGOODImport
-
-
- System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- TPRemoteCall
-
-
- 4
-
-
- LblHostTip
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- TPRemoteCall
-
-
- 5
-
-
- GrpServerStatus
-
-
- System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- TPRemoteCall
-
-
- 6
-
-
- GrpRemoteCommand
-
-
- System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- TPRemoteCall
-
-
- 7
-
-
- TxtHost
-
-
- System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- TPRemoteCall
-
-
- 8
-
-
- BtnQueryServerStatus
-
-
- System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- TPRemoteCall
-
-
- 9
-
-
- LblHost
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- TPRemoteCall
-
-
- 10
-
-
- 4, 26
-
-
- 3, 3, 3, 3
-
-
- 652, 245
-
-
- 14
-
-
- 远程
-
-
- TPRemoteCall
-
-
- System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- TCMain
-
-
- 1
-
None
@@ -627,102 +456,6 @@
None
-
- LnkOpenCommandLabel
-
-
- System.Windows.Forms.LinkLabel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- GrpServerStatus
-
-
- 0
-
-
- LblOpenCommandSupport
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- GrpServerStatus
-
-
- 1
-
-
- LblServerVersion
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- GrpServerStatus
-
-
- 2
-
-
- LblPlayerCount
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- GrpServerStatus
-
-
- 3
-
-
- LblServerVersionLabel
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- GrpServerStatus
-
-
- 4
-
-
- LblPlayerCountLabel
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- GrpServerStatus
-
-
- 5
-
-
- 388, 36
-
-
- 200, 100
-
-
- 4
-
-
- 服务器状态
-
-
- GrpServerStatus
-
-
- System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- TPRemoteCall
-
-
- 6
-
True
@@ -903,206 +636,32 @@
5
-
- None
+
+ 388, 36
-
- TPOpenCommandCheck
+
+ 200, 100
-
- System.Windows.Forms.TabControl, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- GrpRemoteCommand
-
-
- 0
-
-
- False
-
-
- 72, 65
-
-
- 310, 161
-
-
- 5
-
-
- 远程执行
-
-
- GrpRemoteCommand
-
-
- System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- TPRemoteCall
-
-
- 7
-
-
- TPPlayerCheck
-
-
- System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- TPOpenCommandCheck
-
-
- 0
-
-
- TPConsoleCheck
-
-
- System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- TPOpenCommandCheck
-
-
- 1
-
-
- Fill
-
-
- 3, 19
-
-
- 304, 139
-
-
- 0
-
-
- TPOpenCommandCheck
-
-
- System.Windows.Forms.TabControl, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- GrpRemoteCommand
-
-
- 0
-
-
- LnkRCHelp
-
-
- System.Windows.Forms.LinkLabel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- TPPlayerCheck
-
-
- 0
-
-
- NUDRemotePlayerId
-
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- TPPlayerCheck
-
-
- 1
-
-
- BtnConnectOpenCommand
-
-
- System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- TPPlayerCheck
-
-
- 2
-
-
- LblVerificationCode
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- TPPlayerCheck
-
-
- 3
-
-
- BtnSendVerificationCode
-
-
- System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- TPPlayerCheck
-
-
+
4
-
- NUDVerificationCode
+
+ 服务器状态
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+ GrpServerStatus
-
- TPPlayerCheck
+
+ System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
- 5
+
+ TPRemoteCall
-
- LblRemotePlayerId
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- TPPlayerCheck
-
-
+
6
-
- 4, 26
-
-
- 3, 3, 3, 3
-
-
- 296, 109
-
-
- 0
-
-
- 玩家验证
-
-
- TPPlayerCheck
-
-
- System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- TPOpenCommandCheck
-
-
- 0
+
+ None
True
@@ -1296,80 +855,32 @@
6
-
- BtnConsoleConnect
-
-
- System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- TPConsoleCheck
-
-
- 0
-
-
- TxtToken
-
-
- System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- TPConsoleCheck
-
-
- 1
-
-
- LblToken
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- TPConsoleCheck
-
-
- 2
-
-
- LblConsoleTip
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- TPConsoleCheck
-
-
- 3
-
-
+
4, 26
-
+
3, 3, 3, 3
-
+
296, 109
-
- 1
+
+ 0
-
- 控制台
+
+ 玩家验证
-
- TPConsoleCheck
+
+ TPPlayerCheck
-
+
System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
+
TPOpenCommandCheck
-
- 1
+
+ 0
NoControl
@@ -1480,6 +991,84 @@
3
+
+ 4, 26
+
+
+ 3, 3, 3, 3
+
+
+ 296, 111
+
+
+ 1
+
+
+ 控制台
+
+
+ TPConsoleCheck
+
+
+ System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TPOpenCommandCheck
+
+
+ 1
+
+
+ Fill
+
+
+ 3, 19
+
+
+ 304, 139
+
+
+ 0
+
+
+ TPOpenCommandCheck
+
+
+ System.Windows.Forms.TabControl, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ GrpRemoteCommand
+
+
+ 0
+
+
+ False
+
+
+ 72, 65
+
+
+ 310, 161
+
+
+ 5
+
+
+ 远程执行
+
+
+ GrpRemoteCommand
+
+
+ System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TPRemoteCall
+
+
+ 7
+
None
@@ -1567,6 +1156,33 @@
10
+
+ 4, 26
+
+
+ 3, 3, 3, 3
+
+
+ 652, 245
+
+
+ 14
+
+
+ 远程
+
+
+ TPRemoteCall
+
+
+ System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TCMain
+
+
+ 1
+
Bottom, Right
@@ -1697,168 +1313,9 @@
12
-
- GrpBanPlayer
-
-
- System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- TPManage
-
-
- 0
-
-
- GrpAccount
-
-
- System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- TPManage
-
-
- 1
-
-
- GrpPermission
-
-
- System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- TPManage
-
-
- 2
-
-
- 4, 26
-
-
- 3, 3, 3, 3
-
-
- 652, 245
-
-
- 12
-
-
- 管理
-
-
- TPManage
-
-
- System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- TCMain
-
-
- 8
-
None
-
- DTPBanEndTime
-
-
- System.Windows.Forms.DateTimePicker, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- GrpBanPlayer
-
-
- 0
-
-
- BtnUnban
-
-
- System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- GrpBanPlayer
-
-
- 1
-
-
- BtnBan
-
-
- System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- GrpBanPlayer
-
-
- 2
-
-
- TxtBanReason
-
-
- GrasscutterTools.Controls.TextBoxXP, GrasscutterTools, Version=1.7.4.0, Culture=neutral, PublicKeyToken=de2b1c089621e923
-
-
- GrpBanPlayer
-
-
- 3
-
-
- NUDBanUID
-
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- GrpBanPlayer
-
-
- 4
-
-
- LblBanUID
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- GrpBanPlayer
-
-
- 5
-
-
- 56, 158
-
-
- 540, 60
-
-
- 2
-
-
- 封禁管理
-
-
- GrpBanPlayer
-
-
- System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- TPManage
-
-
- 0
-
154, 22
@@ -2009,104 +1466,32 @@
5
-
- None
+
+ 56, 158
-
- ChkAccountSetUid
-
-
- System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- GrpAccount
-
-
- 0
-
-
- NUDAccountUid
-
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- GrpAccount
-
-
- 1
-
-
- BtnDeleteAccount
-
-
- System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- GrpAccount
-
-
- 2
-
-
- BtnCreateAccount
-
-
- System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- GrpAccount
-
-
- 3
-
-
- LblAccountUserName
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- GrpAccount
-
-
- 4
-
-
- TxtAccountUserName
-
-
- System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- GrpAccount
-
-
- 5
-
-
- 56, 6
-
-
+
540, 60
-
- 0
+
+ 2
-
- 账号管理
+
+ 封禁管理
-
- GrpAccount
+
+ GrpBanPlayer
-
+
System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
+
TPManage
-
- 1
+
+ 0
+
+
+ None
True
@@ -2267,128 +1652,32 @@
5
-
- None
+
+ 56, 6
-
- CmbPerm
+
+ 540, 60
-
- System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- GrpPermission
-
-
+
0
-
- NUDPermUID
+
+ 账号管理
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+ GrpAccount
-
- GrpPermission
-
-
- 1
-
-
- BtnPermClear
-
-
- System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- GrpPermission
-
-
- 2
-
-
- BtmPermRemove
-
-
- System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- GrpPermission
-
-
- 3
-
-
- BtnPermList
-
-
- System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- GrpPermission
-
-
- 4
-
-
- BtnPermAdd
-
-
- System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- GrpPermission
-
-
- 5
-
-
- LblPerm
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- GrpPermission
-
-
- 6
-
-
- LblPermUID
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- GrpPermission
-
-
- 7
-
-
- 56, 72
-
-
- 540, 80
-
-
- 1
-
-
- 权限管理
-
-
- GrpPermission
-
-
+
System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
+
TPManage
-
- 2
+
+ 1
+
+
+ None
250, 21
@@ -2600,200 +1889,56 @@
7
-
- TxtSceneFilter
+
+ 56, 72
-
- System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+ 540, 80
-
- TPScene
-
-
- 0
-
-
- ChkIncludeSceneId
-
-
- System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- TPScene
-
-
+
1
-
- LblTpZ
+
+ 权限管理
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+ GrpPermission
-
- TPScene
+
+ System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
+
+ TPManage
+
+
2
-
- LblTpY
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- TPScene
-
-
- 3
-
-
- BtnTeleport
-
-
- System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- TPScene
-
-
- 4
-
-
- LblTpX
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- TPScene
-
-
- 5
-
-
- NUDTpZ
-
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- TPScene
-
-
- 6
-
-
- NUDTpY
-
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- TPScene
-
-
- 7
-
-
- NUDTpX
-
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- TPScene
-
-
- 8
-
-
- CmbClimateType
-
-
- System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- TPScene
-
-
- 9
-
-
- LblClimateType
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- TPScene
-
-
- 10
-
-
- LblSceneDescription
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- TPScene
-
-
- 11
-
-
- ListScenes
-
-
- System.Windows.Forms.ListBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- TPScene
-
-
- 12
-
-
- LblTp
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- TPScene
-
-
- 13
-
-
+
4, 26
-
+
3, 3, 3, 3
-
+
652, 245
-
- 9
+
+ 12
-
- 场景
+
+ 管理
-
- TPScene
+
+ TPManage
-
+
System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
+
TCMain
-
- 11
+
+ 8
Top, Left, Right
@@ -3207,176 +2352,32 @@
13
-
- LblClearGiveItemLogs
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- TPItem
-
-
- 0
-
-
- BtnSaveGiveItemLog
-
-
- System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- TPItem
-
-
- 1
-
-
- BtnRemoveGiveItemLog
-
-
- System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- TPItem
-
-
- 2
-
-
- GrpGiveItemRecord
-
-
- System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- TPItem
-
-
- 3
-
-
- ChkDrop
-
-
- System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- TPItem
-
-
- 4
-
-
- TxtGameItemFilter
-
-
- System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- TPItem
-
-
- 5
-
-
- ListGameItems
-
-
- System.Windows.Forms.ListBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- TPItem
-
-
- 6
-
-
- LblGameItemAmount
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- TPItem
-
-
- 7
-
-
- LblGameItemLevel
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- TPItem
-
-
- 8
-
-
- NUDGameItemAmout
-
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- TPItem
-
-
- 9
-
-
- NUDGameItemLevel
-
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- TPItem
-
-
- 10
-
-
- LblGiveCommandDescription
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- TPItem
-
-
- 11
-
-
+
4, 26
-
+
3, 3, 3, 3
-
+
652, 245
-
- 4
+
+ 9
-
- 物品
+
+ 场景
-
- TPItem
+
+ TPScene
-
+
System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
+
TCMain
-
- 5
+
+ 11
Bottom, Left
@@ -3471,6 +2472,21 @@
Top, Bottom, Left
+
+ Fill
+
+
+ 17
+
+
+ 3, 19
+
+
+ 243, 140
+
+
+ 6
+
ListGiveItemLogs
@@ -3507,33 +2523,6 @@
3
-
- Fill
-
-
- 17
-
-
- 3, 19
-
-
- 243, 140
-
-
- 6
-
-
- ListGiveItemLogs
-
-
- System.Windows.Forms.ListBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- GrpGiveItemRecord
-
-
- 0
-
Bottom, Left
@@ -3763,152 +2752,32 @@
11
-
- BtnGiveAllWeapons
-
-
- System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- TPWeapon
-
-
- 0
-
-
- TxtWeaponFilter
-
-
- System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- TPWeapon
-
-
- 1
-
-
- LblWeaponDescription
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- TPWeapon
-
-
- 2
-
-
- LblWeaponRefinement
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- TPWeapon
-
-
- 3
-
-
- LblWeaponAmount
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- TPWeapon
-
-
- 4
-
-
- LblWeaponLevel
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- TPWeapon
-
-
- 5
-
-
- NUDWeaponRefinement
-
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- TPWeapon
-
-
- 6
-
-
- NUDWeaponAmout
-
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- TPWeapon
-
-
- 7
-
-
- NUDWeaponLevel
-
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- TPWeapon
-
-
- 8
-
-
- ListWeapons
-
-
- System.Windows.Forms.ListBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- TPWeapon
-
-
- 9
-
-
+
4, 26
-
+
3, 3, 3, 3
-
+
652, 245
-
- 3
+
+ 4
-
- 武器
+
+ 物品
-
- TPWeapon
+
+ TPItem
-
+
System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
+
TCMain
-
- 7
+
+ 5
Bottom, Left
@@ -4206,144 +3075,36 @@
9
-
- GrpSetConstellation
-
-
- System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- TPAvatar
-
-
- 0
-
-
- GrpSetStats
-
-
- System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- TPAvatar
-
-
- 1
-
-
- GrpTalentLevel
-
-
- System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- TPAvatar
-
-
- 2
-
-
- GrpGiveAvatar
-
-
- System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- TPAvatar
-
-
- 3
-
-
+
4, 26
-
+
3, 3, 3, 3
-
+
652, 245
-
- 5
+
+ 3
-
- 角色
+
+ 武器
-
- TPAvatar
+
+ TPWeapon
-
+
System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
+
TCMain
-
- 6
+
+ 7
None
-
- LnkSetAllConst
-
-
- System.Windows.Forms.LinkLabel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- GrpSetConstellation
-
-
- 0
-
-
- LnkSetConst
-
-
- System.Windows.Forms.LinkLabel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- GrpSetConstellation
-
-
- 1
-
-
- NUDSetConstellation
-
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- GrpSetConstellation
-
-
- 2
-
-
- 288, 176
-
-
- 332, 55
-
-
- 3
-
-
- 设置命座
-
-
- GrpSetConstellation
-
-
- System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- TPAvatar
-
-
- 0
-
True
@@ -4425,104 +3186,32 @@
2
-
- None
+
+ 288, 176
-
- BtnUnlockStat
+
+ 332, 55
-
- System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- GrpSetStats
-
-
- 0
-
-
- BtnLockStat
-
-
- System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- GrpSetStats
-
-
- 1
-
-
- LblStatTip
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- GrpSetStats
-
-
- 2
-
-
- LblStatPercent
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- GrpSetStats
-
-
+
3
-
- NUDStat
+
+ 设置命座
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+ GrpSetConstellation
-
- GrpSetStats
-
-
- 4
-
-
- CmbStat
-
-
- System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- GrpSetStats
-
-
- 5
-
-
- 288, 13
-
-
- 332, 96
-
-
- 1
-
-
- 角色属性
-
-
- GrpSetStats
-
-
+
System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
+
TPAvatar
-
- 1
+
+ 0
+
+
+ None
False
@@ -4686,92 +3375,32 @@
5
-
- None
+
+ 288, 13
-
- LnkTalentAll
+
+ 332, 96
-
- System.Windows.Forms.LinkLabel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- GrpTalentLevel
-
-
- 0
-
-
- LnkTalentE
-
-
- System.Windows.Forms.LinkLabel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- GrpTalentLevel
-
-
+
1
-
- LnkTalentQ
+
+ 角色属性
-
- System.Windows.Forms.LinkLabel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+ GrpSetStats
-
- GrpTalentLevel
-
-
- 2
-
-
- LnkTalentNormalATK
-
-
- System.Windows.Forms.LinkLabel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- GrpTalentLevel
-
-
- 3
-
-
- NUDTalentLevel
-
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- GrpTalentLevel
-
-
- 4
-
-
- 288, 115
-
-
- 332, 55
-
-
- 2
-
-
- 技能等级
-
-
- GrpTalentLevel
-
-
+
System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
+
TPAvatar
-
- 2
+
+ 1
+
+
+ None
True
@@ -4914,176 +3543,32 @@
4
-
- None
+
+ 288, 115
-
- CmbSwitchElement
+
+ 332, 55
-
- System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- GrpGiveAvatar
-
-
- 0
-
-
- LnkSwitchElement
-
-
- System.Windows.Forms.LinkLabel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- GrpGiveAvatar
-
-
- 1
-
-
- CmbAvatar
-
-
- System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- GrpGiveAvatar
-
-
+
2
-
- LblAvatarSkillLevelTip
+
+ 技能等级
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+ GrpTalentLevel
-
- GrpGiveAvatar
-
-
- 3
-
-
- NUDAvatarLevel
-
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- GrpGiveAvatar
-
-
- 4
-
-
- BtnGiveAllChar
-
-
- System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- GrpGiveAvatar
-
-
- 5
-
-
- LblAvatarLevel
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- GrpGiveAvatar
-
-
- 6
-
-
- LblAvatarSkillLevelLabel
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- GrpGiveAvatar
-
-
- 7
-
-
- LblAvatar
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- GrpGiveAvatar
-
-
- 8
-
-
- LblAvatarConstellation
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- GrpGiveAvatar
-
-
- 9
-
-
- NUDAvatarConstellation
-
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- GrpGiveAvatar
-
-
- 10
-
-
- NUDAvatarSkillLevel
-
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- GrpGiveAvatar
-
-
- 11
-
-
- 32, 13
-
-
- 250, 218
-
-
- 0
-
-
- 获取角色
-
-
- GrpGiveAvatar
-
-
+
System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
+
TPAvatar
-
- 3
+
+ 2
+
+
+ None
无
@@ -5421,360 +3906,60 @@
11
-
- TCSpawnSettings
+
+ 32, 13
-
- System.Windows.Forms.TabControl, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+ 250, 218
-
- TPSpawn
-
-
+
0
-
- TCSpawnItems
+
+ 获取角色
-
- System.Windows.Forms.TabControl, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+ GrpGiveAvatar
-
- TPSpawn
+
+ System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
- 1
+
+ TPAvatar
-
+
+ 3
+
+
4, 26
-
+
3, 3, 3, 3
-
+
652, 245
-
- 6
+
+ 5
-
- 生成
+
+ 角色
-
- TPSpawn
+
+ TPAvatar
-
+
System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
+
TCMain
-
- 4
+
+ 6
Top, Bottom, Left
-
- TPSpawnArgs
-
-
- System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- TCSpawnSettings
-
-
- 0
-
-
- TPAttackModArgs
-
-
- System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- TCSpawnSettings
-
-
- 1
-
-
- TPAttackInfusedArgs
-
-
- System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- TCSpawnSettings
-
-
- 2
-
-
- 6, 6
-
-
- 346, 233
-
-
- 0
-
-
- TCSpawnSettings
-
-
- System.Windows.Forms.TabControl, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- TPSpawn
-
-
- 0
-
-
- NUDEntityDef
-
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- TPSpawnArgs
-
-
- 0
-
-
- NUDEntityAtk
-
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- TPSpawnArgs
-
-
- 1
-
-
- NUDEntityHp
-
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- TPSpawnArgs
-
-
- 2
-
-
- NUDEntityMaxHp
-
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- TPSpawnArgs
-
-
- 3
-
-
- NUDEntityPosZ
-
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- TPSpawnArgs
-
-
- 4
-
-
- NUDEntityPosY
-
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- TPSpawnArgs
-
-
- 5
-
-
- NUDEntityPosX
-
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- TPSpawnArgs
-
-
- 6
-
-
- NUDEntityAmout
-
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- TPSpawnArgs
-
-
- 7
-
-
- NUDEntityLevel
-
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- TPSpawnArgs
-
-
- 8
-
-
- LblSpawnVersionRequireTip
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- TPSpawnArgs
-
-
- 9
-
-
- LblInfiniteHpTip
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- TPSpawnArgs
-
-
- 10
-
-
- LblEntityDef
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- TPSpawnArgs
-
-
- 11
-
-
- LblEntityAtk
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- TPSpawnArgs
-
-
- 12
-
-
- LblEntityHp
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- TPSpawnArgs
-
-
- 13
-
-
- LblEntityMaxHp
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- TPSpawnArgs
-
-
- 14
-
-
- LblEntitySpawnPostion
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- TPSpawnArgs
-
-
- 15
-
-
- LblEntityLevel
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- TPSpawnArgs
-
-
- 16
-
-
- LblEntityAmount
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- TPSpawnArgs
-
-
- 17
-
-
- 4, 26
-
-
- 3, 3, 3, 3
-
-
- 338, 203
-
-
- 0
-
-
- 生成参数
-
-
- TPSpawnArgs
-
-
- System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- TCSpawnSettings
-
-
- 0
-
240, 126
@@ -6234,140 +4419,32 @@
17
-
- LblAMPluginTip
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- TPAttackModArgs
-
-
- 0
-
-
- LblAMPluginIntroduction
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- TPAttackModArgs
-
-
- 1
-
-
- LblAMPlugin
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- TPAttackModArgs
-
-
- 2
-
-
- LnkAMOff
-
-
- System.Windows.Forms.LinkLabel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- TPAttackModArgs
-
-
- 3
-
-
- LnkAMOn
-
-
- System.Windows.Forms.LinkLabel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- TPAttackModArgs
-
-
- 4
-
-
- BtnAtReload
-
-
- System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- TPAttackModArgs
-
-
- 5
-
-
- BtnAtClear
-
-
- System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- TPAttackModArgs
-
-
- 6
-
-
- LnkAttackModifierPlugin
-
-
- System.Windows.Forms.LinkLabel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- TPAttackModArgs
-
-
- 7
-
-
- GrpAMSkills
-
-
- System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- TPAttackModArgs
-
-
- 8
-
-
+
4, 26
-
+
3, 3, 3, 3
-
+
338, 203
-
- 1
+
+ 0
-
- 攻击修改参数
+
+ 生成参数
-
- TPAttackModArgs
+
+ TPSpawnArgs
-
+
System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
+
TCSpawnSettings
-
- 1
+
+ 0
True
@@ -6603,102 +4680,6 @@
7
-
- TxtAtEntityQ
-
-
- System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- GrpAMSkills
-
-
- 0
-
-
- TxtAtEntityE
-
-
- System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- GrpAMSkills
-
-
- 1
-
-
- TxtAtEntityN
-
-
- System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- GrpAMSkills
-
-
- 2
-
-
- RbAtQ
-
-
- System.Windows.Forms.RadioButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- GrpAMSkills
-
-
- 3
-
-
- RbAtE
-
-
- System.Windows.Forms.RadioButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- GrpAMSkills
-
-
- 4
-
-
- RbAtN
-
-
- System.Windows.Forms.RadioButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- GrpAMSkills
-
-
- 5
-
-
- 9, 61
-
-
- 323, 103
-
-
- 6
-
-
- 替换技能
-
-
- GrpAMSkills
-
-
- System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- TPAttackModArgs
-
-
- 8
-
67, 72
@@ -6852,248 +4833,56 @@
5
-
- NUDAiwiRotateZ
+
+ 9, 61
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+ 323, 103
-
- TPAttackInfusedArgs
-
-
- 0
-
-
- NUDAiwiRotateY
-
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- TPAttackInfusedArgs
-
-
- 1
-
-
- NUDAiwiRotateX
-
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- TPAttackInfusedArgs
-
-
- 2
-
-
- LblAiwiRotate
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- TPAttackInfusedArgs
-
-
- 3
-
-
- NUDAiwiSpread
-
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- TPAttackInfusedArgs
-
-
- 4
-
-
- LblAiwiSpread
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- TPAttackInfusedArgs
-
-
- 5
-
-
- NUDAiwiCount
-
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- TPAttackInfusedArgs
-
-
+
6
-
- NUDAiwiHeight
+
+ 替换技能
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+ GrpAMSkills
-
- TPAttackInfusedArgs
+
+ System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
- 7
+
+ TPAttackModArgs
-
- NUDAiwiRadius
-
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- TPAttackInfusedArgs
-
-
+
8
-
- LblAiwiCount
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- TPAttackInfusedArgs
-
-
- 9
-
-
- LblAiwiHeight
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- TPAttackInfusedArgs
-
-
- 10
-
-
- LblAiwiRadius
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- TPAttackInfusedArgs
-
-
- 11
-
-
- BtnAttackInfuse
-
-
- System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- TPAttackInfusedArgs
-
-
- 12
-
-
- BtnAiwiReload
-
-
- System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- TPAttackInfusedArgs
-
-
- 13
-
-
- BtnAiwiClear
-
-
- System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- TPAttackInfusedArgs
-
-
- 14
-
-
- BtnAiwiReset
-
-
- System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- TPAttackInfusedArgs
-
-
- 15
-
-
- LblAiwiPlugin
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- TPAttackInfusedArgs
-
-
- 16
-
-
- LnkAttackInfusedWithItem
-
-
- System.Windows.Forms.LinkLabel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- TPAttackInfusedArgs
-
-
- 17
-
-
+
4, 26
-
+
3, 3, 3, 3
-
+
338, 203
-
- 2
+
+ 1
-
- 攻击注入参数
+
+ 攻击修改参数
-
- TPAttackInfusedArgs
+
+ TPAttackModArgs
-
+
System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
+
TCSpawnSettings
-
- 2
+
+ 1
248, 105
@@ -7560,105 +5349,57 @@
17
-
- Top, Bottom, Left, Right
-
-
- TPSpawnItems
-
-
- System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- TCSpawnItems
-
-
- 0
-
-
- TPSpawnRecords
-
-
- System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- TCSpawnItems
-
-
- 1
-
-
- 358, 6
-
-
- 288, 233
-
-
- 1
-
-
- TCSpawnItems
-
-
- System.Windows.Forms.TabControl, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- TPSpawn
-
-
- 1
-
-
- ListEntity
-
-
- System.Windows.Forms.ListBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- TPSpawnItems
-
-
- 0
-
-
- PanelEntityFilterBar
-
-
- System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- TPSpawnItems
-
-
- 1
-
-
+
4, 26
-
+
3, 3, 3, 3
-
- 280, 203
+
+ 338, 203
-
- 0
+
+ 2
-
- 实体列表
+
+ 攻击注入参数
-
- TPSpawnItems
+
+ TPAttackInfusedArgs
-
+
System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
- TCSpawnItems
+
+ TCSpawnSettings
-
+
+ 2
+
+
+ 6, 6
+
+
+ 346, 233
+
+
0
+
+ TCSpawnSettings
+
+
+ System.Windows.Forms.TabControl, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TPSpawn
+
+
+ 0
+
+
+ Top, Bottom, Left, Right
+
Fill
@@ -7686,54 +5427,6 @@
0
-
- TxtEntityFilter
-
-
- System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- PanelEntityFilterBar
-
-
- 0
-
-
- BtnFilterEntity
-
-
- System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- PanelEntityFilterBar
-
-
- 1
-
-
- Top
-
-
- 3, 3
-
-
- 274, 30
-
-
- 0
-
-
- PanelEntityFilterBar
-
-
- System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- TPSpawnItems
-
-
- 1
-
Top, Left, Right
@@ -7788,56 +5481,56 @@
1
-
- ListSpawnLogs
+
+ Top
-
- System.Windows.Forms.ListBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+ 3, 3
-
- TPSpawnRecords
+
+ 274, 30
-
+
0
-
- FLPSpawnRecordControls
+
+ PanelEntityFilterBar
-
- System.Windows.Forms.FlowLayoutPanel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+ System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
- TPSpawnRecords
+
+ TPSpawnItems
-
+
1
-
+
4, 26
-
+
3, 3, 3, 3
-
+
280, 203
-
- 1
+
+ 0
-
- 生成记录本
+
+ 实体列表
-
- TPSpawnRecords
+
+ TPSpawnItems
-
+
System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
+
TCSpawnItems
-
- 1
+
+ 0
Fill
@@ -7869,66 +5562,6 @@
True
-
- BtnSaveSpawnLog
-
-
- System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- FLPSpawnRecordControls
-
-
- 0
-
-
- BtnRemoveSpawnLog
-
-
- System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- FLPSpawnRecordControls
-
-
- 1
-
-
- LblClearSpawnLogs
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- FLPSpawnRecordControls
-
-
- 2
-
-
- Bottom
-
-
- 3, 171
-
-
- 274, 29
-
-
- 1
-
-
- FLPSpawnRecordControls
-
-
- System.Windows.Forms.FlowLayoutPanel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- TPSpawnRecords
-
-
- 1
-
NoControl
@@ -8019,168 +5652,108 @@
2
-
- GrpQuestFilters
+
+ Bottom
-
- System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+ 3, 171
-
- TPQuest
+
+ 274, 29
-
- 0
-
-
- BtnFinishQuest
-
-
- System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- TPQuest
-
-
+
1
-
- BtnAddQuest
+
+ FLPSpawnRecordControls
-
- System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+ System.Windows.Forms.FlowLayoutPanel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
- TPQuest
+
+ TPSpawnRecords
-
- 2
+
+ 1
-
- LblQuestDescription
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- TPQuest
-
-
- 3
-
-
- TxtQuestFilter
-
-
- System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- TPQuest
-
-
- 4
-
-
- ListQuest
-
-
- System.Windows.Forms.ListBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- TPQuest
-
-
- 5
-
-
+
4, 26
-
+
3, 3, 3, 3
-
- 652, 245
+
+ 280, 203
-
- 15
+
+ 1
-
- 任务
+
+ 生成记录本
-
- TPQuest
+
+ TPSpawnRecords
-
+
System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
+
+ TCSpawnItems
+
+
+ 1
+
+
+ 358, 6
+
+
+ 288, 233
+
+
+ 1
+
+
+ TCSpawnItems
+
+
+ System.Windows.Forms.TabControl, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TPSpawn
+
+
+ 1
+
+
+ 4, 26
+
+
+ 3, 3, 3, 3
+
+
+ 652, 245
+
+
+ 6
+
+
+ 生成
+
+
+ TPSpawn
+
+
+ System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
TCMain
-
- 10
+
+ 4
Bottom, Left
-
- ChkQuestFilterTEST
-
-
- System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- GrpQuestFilters
-
-
- 0
-
-
- ChkQuestFilterUNRELEASED
-
-
- System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- GrpQuestFilters
-
-
- 1
-
-
- ChkQuestFilterHIDDEN
-
-
- System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- GrpQuestFilters
-
-
- 2
-
-
- 202, 109
-
-
- 150, 130
-
-
- 3
-
-
- 列表过滤
-
-
- GrpQuestFilters
-
-
- System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- TPQuest
-
-
- 0
-
True
@@ -8271,6 +5844,30 @@
2
+
+ 202, 109
+
+
+ 150, 130
+
+
+ 3
+
+
+ 列表过滤
+
+
+ GrpQuestFilters
+
+
+ System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TPQuest
+
+
+ 0
+
Bottom, Left
@@ -8414,272 +6011,32 @@
5
-
- LnkCharacterBuilder
-
-
- System.Windows.Forms.LinkLabel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- TPArtifact
-
-
- 0
-
-
- LblArtifactLevelTip
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- TPArtifact
-
-
- 1
-
-
- BtnAddSubAttr
-
-
- System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- TPArtifact
-
-
- 2
-
-
- LblArtifactName
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- TPArtifact
-
-
- 3
-
-
- LblArtifactPart
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- TPArtifact
-
-
- 4
-
-
- CmbArtifactPart
-
-
- System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- TPArtifact
-
-
- 5
-
-
- CmbArtifactSet
-
-
- System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- TPArtifact
-
-
- 6
-
-
- LblArtifactSet
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- TPArtifact
-
-
- 7
-
-
- NUDSubAttributionTimes
-
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- TPArtifact
-
-
- 8
-
-
- CmbSubAttributionValue
-
-
- System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- TPArtifact
-
-
- 9
-
-
- CmbSubAttribution
-
-
- System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- TPArtifact
-
-
- 10
-
-
- LblClearSubAttrCheckedList
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- TPArtifact
-
-
- 11
-
-
- ListSubAttributionChecked
-
-
- System.Windows.Forms.ListBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- TPArtifact
-
-
- 12
-
-
- LblArtifactLevel
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- TPArtifact
-
-
- 13
-
-
- LblSubAttribution
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- TPArtifact
-
-
- 14
-
-
- CmbMainAttribution
-
-
- System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- TPArtifact
-
-
- 15
-
-
- LblMainAttribution
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- TPArtifact
-
-
- 16
-
-
- NUDArtifactLevel
-
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- TPArtifact
-
-
- 17
-
-
- LblArtifactStars
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- TPArtifact
-
-
- 18
-
-
- NUDArtifactStars
-
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- TPArtifact
-
-
- 19
-
-
+
4, 26
-
+
3, 3, 3, 3
-
+
652, 245
-
- 2
+
+ 15
-
- 圣遗物
+
+ 任务
-
- TPArtifact
+
+ TPQuest
-
+
System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
+
TCMain
-
- 3
+
+ 10
Bottom, Right
@@ -9254,116 +6611,32 @@
19
-
- BtnExportCustomCommands
-
-
- System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- TPCustom
-
-
- 0
-
-
- BtnLoadCustomCommands
-
-
- System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- TPCustom
-
-
- 1
-
-
- LblCustomName
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- TPCustom
-
-
- 2
-
-
- groupBox1
-
-
- System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- TPCustom
-
-
- 3
-
-
- BtnRemoveCustomCommand
-
-
- System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- TPCustom
-
-
- 4
-
-
- BtnSaveCustomCommand
-
-
- System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- TPCustom
-
-
- 5
-
-
- TxtCustomName
-
-
- System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- TPCustom
-
-
- 6
-
-
+
4, 26
-
+
3, 3, 3, 3
-
+
652, 245
-
- 1
+
+ 2
-
- 自定义
+
+ 圣遗物
-
- TPCustom
+
+ TPArtifact
-
+
System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
+
TCMain
-
- 2
+
+ 3
Bottom, Right
@@ -9461,54 +6734,6 @@
Top, Bottom, Left, Right
-
- LnkResetCustomCommands
-
-
- System.Windows.Forms.LinkLabel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox1
-
-
- 0
-
-
- FLPCustomCommands
-
-
- System.Windows.Forms.FlowLayoutPanel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox1
-
-
- 1
-
-
- 6, 6
-
-
- 640, 204
-
-
- 1
-
-
- 列表
-
-
- groupBox1
-
-
- System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- TPCustom
-
-
- 3
-
True
@@ -9566,6 +6791,30 @@
1
+
+ 6, 6
+
+
+ 640, 204
+
+
+ 1
+
+
+ 列表
+
+
+ groupBox1
+
+
+ System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TPCustom
+
+
+ 3
+
Bottom, Right
@@ -9650,128 +6899,32 @@
6
-
- BtnOpenShopEditor
-
-
- System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- TPHome
-
-
- 0
-
-
- BtnOpenDropEditor
-
-
- System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- TPHome
-
-
- 1
-
-
- LnkNewVersion
-
-
- System.Windows.Forms.LinkLabel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- TPHome
-
-
- 2
-
-
- LblAbout
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- TPHome
-
-
- 3
-
-
- BtnOpenTextMap
-
-
- System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- TPHome
-
-
- 4
-
-
- BtnOpenGachaBannerEditor
-
-
- System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- TPHome
-
-
- 5
-
-
- GrasscutterToolsIcon
-
-
- System.Windows.Forms.PictureBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- TPHome
-
-
- 6
-
-
- GrpSettings
-
-
- System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- TPHome
-
-
- 7
-
-
+
4, 26
-
+
3, 3, 3, 3
-
+
652, 245
-
- 0
+
+ 1
-
- 主页
+
+ 自定义
-
- TPHome
+
+ TPCustom
-
+
System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
+
TCMain
-
- 0
+
+ 2
Bottom, Right
@@ -9998,126 +7151,6 @@
Bottom, Left
-
- LblGCVersion
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- GrpSettings
-
-
- 0
-
-
- CmbGcVersions
-
-
- System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- GrpSettings
-
-
- 1
-
-
- ChkTopMost
-
-
- System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- GrpSettings
-
-
- 2
-
-
- CmbLanguage
-
-
- System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- GrpSettings
-
-
- 3
-
-
- LblLanguage
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- GrpSettings
-
-
- 4
-
-
- NUDUid
-
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- GrpSettings
-
-
- 5
-
-
- ChkIncludeUID
-
-
- System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- GrpSettings
-
-
- 6
-
-
- LblDefaultUid
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- GrpSettings
-
-
- 7
-
-
- 6, 128
-
-
- 301, 111
-
-
- 2
-
-
- 设置
-
-
- GrpSettings
-
-
- System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- TPHome
-
-
- 7
-
True
@@ -10331,263 +7364,59 @@
7
-
- Top, Bottom, Left, Right
+
+ 6, 128
-
- LblClearMailContent
+
+ 301, 111
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- TPMail
-
-
- 0
-
-
- BtnAddMailItem
-
-
- System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- TPMail
-
-
- 1
-
-
- BtnDeleteMailItem
-
-
- System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- TPMail
-
-
+
2
-
- TCMailRight
+
+ 设置
-
- System.Windows.Forms.TabControl, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+ GrpSettings
-
- TPMail
+
+ System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
- 3
+
+ TPHome
-
- BtnSendMail
-
-
- System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- TPMail
-
-
- 4
-
-
- ListMailItems
-
-
- System.Windows.Forms.ListBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- TPMail
-
-
- 5
-
-
- LblMailItemsLabel
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- TPMail
-
-
- 6
-
-
- NUDMailRecipient
-
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- TPMail
-
-
+
7
-
- RbMailSendToPlayer
-
-
- System.Windows.Forms.RadioButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- TPMail
-
-
- 8
-
-
- RbMailSendToAll
-
-
- System.Windows.Forms.RadioButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- TPMail
-
-
- 9
-
-
- LblMailRecipientLabel
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- TPMail
-
-
- 10
-
-
- TxtMailContent
-
-
- System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- TPMail
-
-
- 11
-
-
- LblMailContentLabel
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- TPMail
-
-
- 12
-
-
- TxtMailTitle
-
-
- System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- TPMail
-
-
- 13
-
-
- LblMailTitleLabel
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- TPMail
-
-
- 14
-
-
- TxtMailSender
-
-
- System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- TPMail
-
-
- 15
-
-
- LblMailSenderLabel
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- TPMail
-
-
- 16
-
-
+
4, 26
-
+
3, 3, 3, 3
-
+
652, 245
-
- 16
+
+ 0
-
- 邮件
+
+ 主页
-
- TPMail
+
+ TPHome
-
+
System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
+
TCMain
-
- 9
+
+ 0
-
- 12, 12
-
-
- 610, 275
-
-
- 660, 275
-
-
- 4
-
-
- TCMain
-
-
- System.Windows.Forms.TabControl, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- $this
-
-
- 1
+
+ Top, Bottom, Left, Right
True
@@ -10682,114 +7511,6 @@
Top, Bottom, Left, Right
-
- TPMailSelectableItemList
-
-
- System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- TCMailRight
-
-
- 0
-
-
- TPMailList
-
-
- System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- TCMailRight
-
-
- 1
-
-
- 410, 8
-
-
- 236, 234
-
-
- 15
-
-
- TCMailRight
-
-
- System.Windows.Forms.TabControl, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- TPMail
-
-
- 3
-
-
- TxtMailSelectableItemFilter
-
-
- System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- TPMailSelectableItemList
-
-
- 0
-
-
- ListMailSelectableItems
-
-
- System.Windows.Forms.ListBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- TPMailSelectableItemList
-
-
- 1
-
-
- PanelMailItemArgs
-
-
- System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- TPMailSelectableItemList
-
-
- 2
-
-
- 4, 26
-
-
- 3, 3, 3, 3
-
-
- 228, 204
-
-
- 0
-
-
- 物品列表
-
-
- TPMailSelectableItemList
-
-
- System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- TCMailRight
-
-
- 0
-
Top, Left, Right
@@ -10844,78 +7565,6 @@
1
-
- NUDMailItemLevel
-
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- PanelMailItemArgs
-
-
- 0
-
-
- NUDMailItemCount
-
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- PanelMailItemArgs
-
-
- 1
-
-
- LblMailItemCount
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- PanelMailItemArgs
-
-
- 2
-
-
- LblMailItemLevel
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- PanelMailItemArgs
-
-
- 3
-
-
- Bottom
-
-
- 3, 171
-
-
- 222, 30
-
-
- 2
-
-
- PanelMailItemArgs
-
-
- System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- TPMailSelectableItemList
-
-
- 2
-
171, 5
@@ -11018,56 +7667,56 @@
3
-
- ListMailList
+
+ Bottom
-
- System.Windows.Forms.ListBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+ 3, 171
-
- TPMailList
+
+