From f1eb40bb0d404ecb11fac0ebef69f7d3a33a1e26 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=AD=B1=E5=82=91?= Date: Wed, 16 Nov 2022 21:18:57 +0800 Subject: [PATCH] Fix tab order (#152) --- .../Forms/FormMain.Designer.cs | 38 +- Source/GrasscutterTools/Forms/FormMain.resx | 1414 ++++++++++------- 2 files changed, 828 insertions(+), 624 deletions(-) diff --git a/Source/GrasscutterTools/Forms/FormMain.Designer.cs b/Source/GrasscutterTools/Forms/FormMain.Designer.cs index edaf0fb..e074b4c 100644 --- a/Source/GrasscutterTools/Forms/FormMain.Designer.cs +++ b/Source/GrasscutterTools/Forms/FormMain.Designer.cs @@ -225,7 +225,7 @@ namespace GrasscutterTools.Forms this.TCSpawnItems = new System.Windows.Forms.TabControl(); this.TPSpawnItems = new System.Windows.Forms.TabPage(); this.ListEntity = new System.Windows.Forms.ListBox(); - this.panel1 = new System.Windows.Forms.Panel(); + this.PanelEntityFilterBar = new System.Windows.Forms.Panel(); this.TxtEntityFilter = new System.Windows.Forms.TextBox(); this.BtnFilterEntity = new System.Windows.Forms.Button(); this.TPSpawnRecords = new System.Windows.Forms.TabPage(); @@ -245,6 +245,7 @@ namespace GrasscutterTools.Forms this.TxtQuestFilter = new System.Windows.Forms.TextBox(); this.ListQuest = new System.Windows.Forms.ListBox(); this.TPArtifact = new System.Windows.Forms.TabPage(); + this.LnkCharacterBuilder = new System.Windows.Forms.LinkLabel(); this.LblArtifactLevelTip = new System.Windows.Forms.Label(); this.BtnAddSubAttr = new System.Windows.Forms.Button(); this.LblArtifactName = new System.Windows.Forms.Label(); @@ -324,7 +325,6 @@ namespace GrasscutterTools.Forms this.TxtMailSender = new System.Windows.Forms.TextBox(); this.LblMailSenderLabel = new System.Windows.Forms.Label(); this.MenuSpawnEntityFilter = new System.Windows.Forms.ContextMenuStrip(this.components); - this.LnkCharacterBuilder = new System.Windows.Forms.LinkLabel(); this.GrpCommand.SuspendLayout(); this.TPRemoteCall.SuspendLayout(); this.GrpServerStatus.SuspendLayout(); @@ -390,7 +390,7 @@ namespace GrasscutterTools.Forms ((System.ComponentModel.ISupportInitialize)(this.NUDAiwiRadius)).BeginInit(); this.TCSpawnItems.SuspendLayout(); this.TPSpawnItems.SuspendLayout(); - this.panel1.SuspendLayout(); + this.PanelEntityFilterBar.SuspendLayout(); this.TPSpawnRecords.SuspendLayout(); this.FLPSpawnRecordControls.SuspendLayout(); this.TPQuest.SuspendLayout(); @@ -2209,7 +2209,7 @@ namespace GrasscutterTools.Forms // TPSpawnItems // this.TPSpawnItems.Controls.Add(this.ListEntity); - this.TPSpawnItems.Controls.Add(this.panel1); + this.TPSpawnItems.Controls.Add(this.PanelEntityFilterBar); resources.ApplyResources(this.TPSpawnItems, "TPSpawnItems"); this.TPSpawnItems.Name = "TPSpawnItems"; this.TPSpawnItems.UseVisualStyleBackColor = true; @@ -2221,12 +2221,12 @@ namespace GrasscutterTools.Forms this.ListEntity.Name = "ListEntity"; this.ListEntity.SelectedIndexChanged += new System.EventHandler(this.ListEntity_SelectedIndexChanged); // - // panel1 + // PanelEntityFilterBar // - this.panel1.Controls.Add(this.TxtEntityFilter); - this.panel1.Controls.Add(this.BtnFilterEntity); - resources.ApplyResources(this.panel1, "panel1"); - this.panel1.Name = "panel1"; + this.PanelEntityFilterBar.Controls.Add(this.TxtEntityFilter); + this.PanelEntityFilterBar.Controls.Add(this.BtnFilterEntity); + resources.ApplyResources(this.PanelEntityFilterBar, "PanelEntityFilterBar"); + this.PanelEntityFilterBar.Name = "PanelEntityFilterBar"; // // TxtEntityFilter // @@ -2389,6 +2389,13 @@ namespace GrasscutterTools.Forms this.TPArtifact.Name = "TPArtifact"; this.TPArtifact.UseVisualStyleBackColor = true; // + // LnkCharacterBuilder + // + resources.ApplyResources(this.LnkCharacterBuilder, "LnkCharacterBuilder"); + this.LnkCharacterBuilder.Name = "LnkCharacterBuilder"; + this.LnkCharacterBuilder.TabStop = true; + this.LnkCharacterBuilder.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.LnkCharacterBuilder_LinkClicked); + // // LblArtifactLevelTip // resources.ApplyResources(this.LblArtifactLevelTip, "LblArtifactLevelTip"); @@ -3025,13 +3032,6 @@ namespace GrasscutterTools.Forms this.MenuSpawnEntityFilter.Name = "MenuSpawnEntityFilter"; resources.ApplyResources(this.MenuSpawnEntityFilter, "MenuSpawnEntityFilter"); // - // LnkCharacterBuilder - // - resources.ApplyResources(this.LnkCharacterBuilder, "LnkCharacterBuilder"); - this.LnkCharacterBuilder.Name = "LnkCharacterBuilder"; - this.LnkCharacterBuilder.TabStop = true; - this.LnkCharacterBuilder.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.LnkCharacterBuilder_LinkClicked); - // // FormMain // resources.ApplyResources(this, "$this"); @@ -3128,8 +3128,8 @@ namespace GrasscutterTools.Forms ((System.ComponentModel.ISupportInitialize)(this.NUDAiwiRadius)).EndInit(); this.TCSpawnItems.ResumeLayout(false); this.TPSpawnItems.ResumeLayout(false); - this.panel1.ResumeLayout(false); - this.panel1.PerformLayout(); + this.PanelEntityFilterBar.ResumeLayout(false); + this.PanelEntityFilterBar.PerformLayout(); this.TPSpawnRecords.ResumeLayout(false); this.TPSpawnRecords.PerformLayout(); this.FLPSpawnRecordControls.ResumeLayout(false); @@ -3413,7 +3413,7 @@ namespace GrasscutterTools.Forms private System.Windows.Forms.TabPage TPSpawnArgs; private System.Windows.Forms.TabPage TPAttackModArgs; private System.Windows.Forms.Button BtnFilterEntity; - private System.Windows.Forms.Panel panel1; + private System.Windows.Forms.Panel PanelEntityFilterBar; private System.Windows.Forms.FlowLayoutPanel FLPSpawnRecordControls; private System.Windows.Forms.ContextMenuStrip MenuSpawnEntityFilter; private System.Windows.Forms.GroupBox GrpAMSkills; diff --git a/Source/GrasscutterTools/Forms/FormMain.resx b/Source/GrasscutterTools/Forms/FormMain.resx index 2db85e3..0b93554 100644 --- a/Source/GrasscutterTools/Forms/FormMain.resx +++ b/Source/GrasscutterTools/Forms/FormMain.resx @@ -130,7 +130,7 @@ - 0 + 1 TxtCommand @@ -157,7 +157,7 @@ 50, 23 - 1 + 2 复制 @@ -190,7 +190,7 @@ 51, 21 - 2 + 3 自动 @@ -259,7 +259,7 @@ 75, 23 - 3 + 0 执行(F5) @@ -451,7 +451,7 @@ 37, 17 - 14 + 9 Links @@ -484,7 +484,7 @@ 46, 17 - 13 + 8 GOOD @@ -514,7 +514,7 @@ 107, 17 - 12 + 7 存档扫描开源工具 @@ -544,7 +544,7 @@ 205, 58 - 11 + 6 快来将你的官服存档导入GC吧! @@ -607,7 +607,7 @@ 210, 17 - 7 + 0 请确保地址中包含 http:// 或 https:// @@ -928,7 +928,7 @@ 310, 161 - 6 + 5 远程执行 @@ -979,7 +979,7 @@ 304, 139 - 7 + 0 TPOpenCommandCheck @@ -1117,7 +1117,7 @@ 32, 17 - 9 + 2 帮助 @@ -1141,7 +1141,7 @@ 118, 23 - 8 + 1 NUDRemotePlayerId @@ -1168,7 +1168,7 @@ 100, 23 - 13 + 6 连接 @@ -1198,7 +1198,7 @@ 44, 17 - 10 + 3 验证码 @@ -1225,7 +1225,7 @@ 100, 23 - 12 + 5 发送验证码 @@ -1252,7 +1252,7 @@ 118, 23 - 11 + 4 NUDVerificationCode @@ -1279,7 +1279,7 @@ 30, 17 - 7 + 0 UID @@ -1351,7 +1351,7 @@ 3, 3, 3, 3 - 296, 111 + 296, 109 1 @@ -1381,7 +1381,7 @@ 100, 23 - 2 + 3 连接 @@ -1462,7 +1462,7 @@ 275, 40 - 3 + 2 请注意,控制台状态下普通命令必须指定目标 @@ -1567,69 +1567,6 @@ 10 - - GrasscutterToolsSupport - - - System.Windows.Forms.PictureBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - TPAbout - - - 0 - - - LnkGithub - - - System.Windows.Forms.LinkLabel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - TPAbout - - - 1 - - - LblSupportDescription - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - TPAbout - - - 2 - - - 4, 26 - - - 3, 3, 3, 3 - - - 652, 245 - - - 13 - - - 关于 - - - TPAbout - - - System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - TCMain - - - 12 - Bottom, Right @@ -1679,7 +1616,7 @@ 46, 17 - 4 + 1 Github @@ -1709,7 +1646,7 @@ 334, 136 - 3 + 0 割草机工具箱 @@ -1719,7 +1656,7 @@ 如果愿意请我喝一杯奶茶,那就更好了 : ) 指令生成有问题,或者有新的功能请求,都可以来Github提出 -欢迎内测Q群: 457427536 +欢迎加入内测Q群: 457427536 (需要回答正确答案) LblSupportDescription @@ -1733,6 +1670,33 @@ 2 + + 4, 26 + + + 3, 3, 3, 3 + + + 652, 245 + + + 13 + + + 关于 + + + TPAbout + + + System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + TCMain + + + 12 + GrpBanPlayer @@ -1839,7 +1803,7 @@ TxtBanReason - GrasscutterTools.Controls.TextBoxXP, GrasscutterTools, Version=1.7.3.0, Culture=neutral, PublicKeyToken=de2b1c089621e923 + GrasscutterTools.Controls.TextBoxXP, GrasscutterTools, Version=1.7.4.0, Culture=neutral, PublicKeyToken=de2b1c089621e923 GrpBanPlayer @@ -1902,7 +1866,7 @@ 90, 23 - 13 + 2 DTPBanEndTime @@ -1926,7 +1890,7 @@ 60, 23 - 12 + 5 解封 @@ -1953,7 +1917,7 @@ 60, 23 - 11 + 4 封号 @@ -1977,7 +1941,7 @@ 150, 23 - 8 + 3 封禁理由 @@ -1986,7 +1950,7 @@ TxtBanReason - GrasscutterTools.Controls.TextBoxXP, GrasscutterTools, Version=1.7.3.0, Culture=neutral, PublicKeyToken=de2b1c089621e923 + GrasscutterTools.Controls.TextBoxXP, GrasscutterTools, Version=1.7.4.0, Culture=neutral, PublicKeyToken=de2b1c089621e923 GrpBanPlayer @@ -2001,7 +1965,7 @@ 82, 23 - 6 + 1 NUDBanUID @@ -2433,7 +2397,7 @@ 150, 25 - 7 + 3 CmbPerm @@ -2454,7 +2418,7 @@ 140, 23 - 6 + 1 NUDPermUID @@ -2841,7 +2805,7 @@ 300, 23 - 13 + 12 TxtSceneFilter @@ -2874,7 +2838,7 @@ 76, 21 - 12 + 11 含场景ID @@ -2907,7 +2871,7 @@ 14, 17 - 10 + 8 z @@ -2940,7 +2904,7 @@ 14, 17 - 9 + 6 y @@ -2970,7 +2934,7 @@ 75, 23 - 8 + 10 传送 @@ -3003,7 +2967,7 @@ 14, 17 - 7 + 4 x @@ -3030,7 +2994,7 @@ 80, 23 - 6 + 9 NUDTpZ @@ -3054,7 +3018,7 @@ 80, 23 - 5 + 7 NUDTpY @@ -3078,7 +3042,7 @@ 80, 23 - 4 + 5 NUDTpX @@ -3102,7 +3066,7 @@ 121, 25 - 3 + 2 CmbClimateType @@ -3132,7 +3096,7 @@ 56, 17 - 2 + 1 设置天气 @@ -3162,7 +3126,7 @@ 224, 51 - 1 + 0 场景控制 @@ -3194,7 +3158,7 @@ 300, 208 - 0 + 13 ListScenes @@ -3224,7 +3188,7 @@ 296, 51 - 11 + 3 坐标传送 @@ -3430,7 +3394,7 @@ 44, 17 - 16 + 4 X 清空 @@ -3457,7 +3421,7 @@ 75, 23 - 7 + 2 √ 记录 @@ -3487,7 +3451,7 @@ 75, 23 - 8 + 3 × 删除 @@ -3526,7 +3490,7 @@ 249, 162 - 5 + 1 物品记录本 @@ -3586,7 +3550,7 @@ 51, 21 - 4 + 9 掉落 @@ -3613,7 +3577,7 @@ 300, 23 - 0 + 10 TxtGameItemFilter @@ -3640,7 +3604,7 @@ 300, 208 - 1 + 11 ListGameItems @@ -3670,7 +3634,7 @@ 32, 17 - 14 + 5 数量 @@ -3703,7 +3667,7 @@ 32, 17 - 15 + 7 等级 @@ -3730,7 +3694,7 @@ 100, 23 - 2 + 6 NUDGameItemAmout @@ -3754,7 +3718,7 @@ 50, 23 - 3 + 8 NUDGameItemLevel @@ -3781,7 +3745,7 @@ 236, 34 - 1 + 0 给玩家指定物品 @@ -3962,7 +3926,7 @@ 150, 35 - 10 + 1 获得所有武器 @@ -4019,7 +3983,7 @@ 200, 153 - 7 + 0 获取武器 @@ -4093,7 +4057,7 @@ 32, 17 - 6 + 2 数量 @@ -4126,7 +4090,7 @@ 32, 17 - 6 + 4 等级 @@ -4153,7 +4117,7 @@ 50, 23 - 5 + 7 NUDWeaponRefinement @@ -4177,7 +4141,7 @@ 50, 23 - 5 + 3 NUDWeaponAmout @@ -4228,7 +4192,7 @@ 200, 208 - 4 + 9 ListWeapons @@ -4363,7 +4327,7 @@ 332, 55 - 15 + 3 设置命座 @@ -4543,7 +4507,7 @@ 332, 96 - 14 + 1 角色属性 @@ -4573,7 +4537,7 @@ 125, 23 - 6 + 5 解锁 @@ -4603,7 +4567,7 @@ 125, 23 - 5 + 4 锁定 @@ -4630,7 +4594,7 @@ 286, 17 - 4 + 0 提示 @@ -4687,7 +4651,7 @@ 70, 23 - 1 + 2 NUDStat @@ -4708,7 +4672,7 @@ 158, 25 - 0 + 1 CmbStat @@ -4792,7 +4756,7 @@ 332, 55 - 13 + 2 技能等级 @@ -4822,7 +4786,7 @@ 32, 17 - 4 + 1 全部 @@ -4852,7 +4816,7 @@ 39, 17 - 3 + 4 E技能 @@ -4882,7 +4846,7 @@ 42, 17 - 2 + 3 Q技能 @@ -4912,7 +4876,7 @@ 56, 17 - 1 + 2 普通攻击 @@ -5104,7 +5068,7 @@ 250, 218 - 11 + 0 获取角色 @@ -5152,7 +5116,7 @@ 87, 25 - 12 + 11 CmbSwitchElement @@ -5176,7 +5140,7 @@ 80, 17 - 11 + 10 切换主角元素 @@ -5200,7 +5164,7 @@ 110, 25 - 0 + 1 CmbAvatar @@ -5227,7 +5191,7 @@ 46, 17 - 10 + 8 *v1.4.1 @@ -5251,7 +5215,7 @@ 110, 23 - 1 + 3 NUDAvatarLevel @@ -5338,7 +5302,7 @@ 56, 17 - 7 + 6 技能等级 @@ -5368,7 +5332,7 @@ 32, 17 - 3 + 0 角色 @@ -5398,7 +5362,7 @@ 32, 17 - 7 + 4 命座 @@ -5422,7 +5386,7 @@ 110, 23 - 6 + 5 NUDAvatarConstellation @@ -5443,7 +5407,7 @@ 110, 23 - 6 + 7 NUDAvatarSkillLevel @@ -5818,7 +5782,7 @@ 80, 23 - 5 + 13 NUDEntityDef @@ -5839,7 +5803,7 @@ 80, 23 - 4 + 11 NUDEntityAtk @@ -5860,7 +5824,7 @@ 80, 23 - 2 + 6 NUDEntityHp @@ -5881,7 +5845,7 @@ 80, 23 - 3 + 8 NUDEntityMaxHp @@ -5902,7 +5866,7 @@ 60, 23 - 8 + 17 NUDEntityPosZ @@ -5923,7 +5887,7 @@ 60, 23 - 7 + 16 NUDEntityPosY @@ -5944,7 +5908,7 @@ 60, 23 - 6 + 15 NUDEntityPosX @@ -5965,7 +5929,7 @@ 80, 23 - 0 + 1 NUDEntityAmout @@ -5986,7 +5950,7 @@ 80, 23 - 1 + 3 NUDEntityLevel @@ -6013,7 +5977,7 @@ 162, 17 - 43 + 4 以下参数至少要求 GC v1.3.1 @@ -6043,7 +6007,7 @@ 107, 17 - 42 + 9 血量为 0 表示无限 @@ -6073,7 +6037,7 @@ 56, 17 - 40 + 12 防御力: @@ -6103,7 +6067,7 @@ 56, 17 - 38 + 10 攻击力: @@ -6133,7 +6097,7 @@ 44, 17 - 36 + 5 血量: @@ -6163,7 +6127,7 @@ 68, 17 - 34 + 7 最大血量: @@ -6193,7 +6157,7 @@ 235, 17 - 30 + 14 位置: x: y: z: @@ -6223,7 +6187,7 @@ 44, 17 - 11 + 2 等级: @@ -6253,7 +6217,7 @@ 44, 17 - 10 + 0 数量: @@ -6418,7 +6382,7 @@ 140, 17 - 11 + 5 见识一下真正的雷神吧! @@ -6448,7 +6412,7 @@ 227, 17 - 11 + 4 这个插件可以使用 Gadget 替换角色攻击 @@ -6478,7 +6442,7 @@ 44, 17 - 10 + 0 插件: @@ -6508,7 +6472,7 @@ 20, 17 - 2 + 3 @@ -6538,7 +6502,7 @@ 20, 17 - 1 + 2 @@ -6565,7 +6529,7 @@ 100, 23 - 5 + 8 重载配置 @@ -6592,7 +6556,7 @@ 217, 23 - 4 + 7 清空实体!! @@ -6622,7 +6586,7 @@ 94, 17 - 0 + 1 AttackModifier @@ -6718,7 +6682,7 @@ 323, 103 - 3 + 6 替换技能 @@ -7138,7 +7102,7 @@ 60, 23 - 7 + 13 NUDAiwiRotateZ @@ -7159,7 +7123,7 @@ 60, 23 - 6 + 12 NUDAiwiRotateY @@ -7180,7 +7144,7 @@ 60, 23 - 5 + 11 NUDAiwiRotateX @@ -7207,7 +7171,7 @@ 235, 17 - 26 + 10 旋转: x: y: z: @@ -7231,7 +7195,7 @@ 80, 23 - 4 + 9 NUDAiwiSpread @@ -7258,7 +7222,7 @@ 44, 17 - 24 + 8 扩散: @@ -7282,7 +7246,7 @@ 80, 23 - 3 + 7 NUDAiwiCount @@ -7303,7 +7267,7 @@ 80, 23 - 2 + 5 NUDAiwiHeight @@ -7324,7 +7288,7 @@ 80, 23 - 1 + 3 NUDAiwiRadius @@ -7351,7 +7315,7 @@ 44, 17 - 20 + 6 数量: @@ -7381,7 +7345,7 @@ 44, 17 - 18 + 4 高度: @@ -7411,7 +7375,7 @@ 44, 17 - 16 + 2 范围: @@ -7438,7 +7402,7 @@ 150, 30 - 8 + 14 攻击注入 @@ -7465,7 +7429,7 @@ 100, 23 - 11 + 17 重载配置 @@ -7492,7 +7456,7 @@ 100, 23 - 10 + 16 清空实体 @@ -7519,7 +7483,7 @@ 100, 23 - 9 + 15 重置 @@ -7549,7 +7513,7 @@ 44, 17 - 11 + 0 插件: @@ -7579,7 +7543,7 @@ 139, 17 - 0 + 1 AttackInfusedWithItem @@ -7656,16 +7620,16 @@ 0 - - panel1 + + PanelEntityFilterBar - + System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - + TPSpawnItems - + 1 @@ -7729,7 +7693,7 @@ System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - panel1 + PanelEntityFilterBar 0 @@ -7741,33 +7705,33 @@ System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - panel1 + PanelEntityFilterBar 1 - + Top - + 3, 3 - + 274, 30 - - 17 + + 0 - - panel1 + + PanelEntityFilterBar - + System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - + TPSpawnItems - + 1 @@ -7789,7 +7753,7 @@ System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - panel1 + PanelEntityFilterBar 0 @@ -7807,7 +7771,7 @@ 26, 24 - 5 + 1 @@ -7819,7 +7783,7 @@ System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - panel1 + PanelEntityFilterBar 1 @@ -7888,7 +7852,7 @@ 274, 168 - 9 + 0 ListSpawnLogs @@ -7951,7 +7915,7 @@ 274, 29 - 17 + 1 FLPSpawnRecordControls @@ -7975,7 +7939,7 @@ 75, 23 - 10 + 0 √ 记录 @@ -8005,7 +7969,7 @@ 75, 23 - 11 + 1 × 删除 @@ -8038,7 +8002,7 @@ 44, 17 - 13 + 2 X 清空 @@ -8200,7 +8164,7 @@ 150, 130 - 7 + 3 列表过滤 @@ -8320,7 +8284,7 @@ 90, 23 - 6 + 2 完成任务 @@ -8350,7 +8314,7 @@ 90, 23 - 5 + 1 添加任务 @@ -8380,7 +8344,7 @@ 346, 100 - 4 + 0 添加或完成任务 @@ -8409,7 +8373,7 @@ 288, 23 - 2 + 4 TxtQuestFilter @@ -8436,7 +8400,7 @@ 288, 208 - 3 + 5 ListQuest @@ -8450,24 +8414,6 @@ 5 - - Bottom, Right - - - True - - - 540, 225 - - - 109, 17 - - - 46 - - - Character Builder - LnkCharacterBuilder @@ -8480,27 +8426,6 @@ 0 - - Top - - - True - - - NoControl - - - 223, 41 - - - 42, 17 - - - 37 - - - [0-20] - LblArtifactLevelTip @@ -8513,24 +8438,6 @@ 1 - - Top - - - NoControl - - - 465, 129 - - - 75, 23 - - - 8 - - - + 添加 - BtnAddSubAttr @@ -8543,24 +8450,6 @@ 2 - - Top - - - True - - - NoControl - - - 462, 11 - - - 0, 17 - - - 45 - LblArtifactName @@ -8573,27 +8462,6 @@ 3 - - Top - - - True - - - NoControl - - - 298, 11 - - - 32, 17 - - - 42 - - - 部位 - LblArtifactPart @@ -8606,18 +8474,6 @@ 4 - - Top - - - 336, 8 - - - 120, 25 - - - 1 - CmbArtifactPart @@ -8630,18 +8486,6 @@ 5 - - Top - - - 167, 8 - - - 125, 25 - - - 0 - CmbArtifactSet @@ -8654,27 +8498,6 @@ 6 - - Top - - - True - - - NoControl - - - 129, 11 - - - 32, 17 - - - 38 - - - 套装 - LblArtifactSet @@ -8687,18 +8510,6 @@ 7 - - Top - - - 465, 100 - - - 51, 23 - - - 7 - NUDSubAttributionTimes @@ -8711,18 +8522,6 @@ 8 - - Top - - - 336, 98 - - - 120, 25 - - - 6 - CmbSubAttributionValue @@ -8735,18 +8534,6 @@ 9 - - Top - - - 167, 99 - - - 163, 25 - - - 5 - CmbSubAttribution @@ -8759,27 +8546,6 @@ 10 - - Top - - - True - - - NoControl - - - 462, 218 - - - 44, 17 - - - 10 - - - X 清空 - LblClearSubAttrCheckedList @@ -8792,21 +8558,6 @@ 11 - - Top, Bottom - - - 17 - - - 167, 129 - - - 289, 106 - - - 9 - ListSubAttributionChecked @@ -8819,27 +8570,6 @@ 12 - - Top - - - True - - - NoControl - - - 129, 41 - - - 32, 17 - - - 24 - - - 等级 - LblArtifactLevel @@ -8852,27 +8582,6 @@ 13 - - Top - - - True - - - NoControl - - - 117, 102 - - - 44, 17 - - - 23 - - - 副词条 - LblSubAttribution @@ -8885,18 +8594,6 @@ 14 - - Top - - - 167, 68 - - - 289, 25 - - - 4 - CmbMainAttribution @@ -8909,27 +8606,6 @@ 15 - - Top - - - True - - - NoControl - - - 117, 71 - - - 44, 17 - - - 20 - - - 主词条 - LblMainAttribution @@ -8942,18 +8618,6 @@ 16 - - Top - - - 167, 39 - - - 50, 23 - - - 2 - NUDArtifactLevel @@ -8966,27 +8630,6 @@ 17 - - Top - - - True - - - NoControl - - - 353, 41 - - - 32, 17 - - - 43 - - - 星级 - LblArtifactStars @@ -8999,18 +8642,6 @@ 18 - - Top - - - 391, 39 - - - 65, 23 - - - 3 - NUDArtifactStars @@ -9050,6 +8681,579 @@ 3 + + Bottom, Right + + + True + + + 540, 225 + + + 109, 17 + + + 19 + + + Character Builder + + + LnkCharacterBuilder + + + System.Windows.Forms.LinkLabel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + TPArtifact + + + 0 + + + Top + + + True + + + NoControl + + + 223, 41 + + + 42, 17 + + + 7 + + + [0-20] + + + LblArtifactLevelTip + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + TPArtifact + + + 1 + + + Top + + + NoControl + + + 465, 129 + + + 75, 23 + + + 17 + + + + 添加 + + + BtnAddSubAttr + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + TPArtifact + + + 2 + + + Top + + + True + + + NoControl + + + 462, 11 + + + 0, 17 + + + 4 + + + LblArtifactName + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + TPArtifact + + + 3 + + + Top + + + True + + + NoControl + + + 298, 11 + + + 32, 17 + + + 2 + + + 部位 + + + LblArtifactPart + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + TPArtifact + + + 4 + + + Top + + + 336, 8 + + + 120, 25 + + + 3 + + + CmbArtifactPart + + + System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + TPArtifact + + + 5 + + + Top + + + 167, 8 + + + 125, 25 + + + 1 + + + CmbArtifactSet + + + System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + TPArtifact + + + 6 + + + Top + + + True + + + NoControl + + + 129, 11 + + + 32, 17 + + + 0 + + + 套装 + + + LblArtifactSet + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + TPArtifact + + + 7 + + + Top + + + 465, 100 + + + 51, 23 + + + 15 + + + NUDSubAttributionTimes + + + System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + TPArtifact + + + 8 + + + Top + + + 336, 98 + + + 120, 25 + + + 14 + + + CmbSubAttributionValue + + + System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + TPArtifact + + + 9 + + + Top + + + 167, 99 + + + 163, 25 + + + 13 + + + CmbSubAttribution + + + System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + TPArtifact + + + 10 + + + Top + + + True + + + NoControl + + + 462, 218 + + + 44, 17 + + + 18 + + + X 清空 + + + LblClearSubAttrCheckedList + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + TPArtifact + + + 11 + + + Top, Bottom + + + 17 + + + 167, 129 + + + 289, 106 + + + 16 + + + ListSubAttributionChecked + + + System.Windows.Forms.ListBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + TPArtifact + + + 12 + + + Top + + + True + + + NoControl + + + 129, 41 + + + 32, 17 + + + 5 + + + 等级 + + + LblArtifactLevel + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + TPArtifact + + + 13 + + + Top + + + True + + + NoControl + + + 117, 102 + + + 44, 17 + + + 12 + + + 副词条 + + + LblSubAttribution + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + TPArtifact + + + 14 + + + Top + + + 167, 68 + + + 289, 25 + + + 11 + + + CmbMainAttribution + + + System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + TPArtifact + + + 15 + + + Top + + + True + + + NoControl + + + 117, 71 + + + 44, 17 + + + 10 + + + 主词条 + + + LblMainAttribution + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + TPArtifact + + + 16 + + + Top + + + 167, 39 + + + 50, 23 + + + 6 + + + NUDArtifactLevel + + + System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + TPArtifact + + + 17 + + + Top + + + True + + + NoControl + + + 353, 41 + + + 32, 17 + + + 8 + + + 星级 + + + LblArtifactStars + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + TPArtifact + + + 18 + + + Top + + + 391, 39 + + + 65, 23 + + + 9 + + + NUDArtifactStars + + + System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + TPArtifact + + + 19 + BtnExportCustomCommands @@ -9237,7 +9441,7 @@ 32, 17 - 5 + 2 标签 @@ -9318,7 +9522,7 @@ 32, 17 - 1 + 8 重置 @@ -9375,7 +9579,7 @@ 60, 23 - 4 + 5 × 删除 @@ -9405,7 +9609,7 @@ 60, 23 - 3 + 4 √ 保存 @@ -9432,7 +9636,7 @@ 355, 23 - 1 + 3 TxtCustomName @@ -9582,7 +9786,7 @@ 100, 23 - 11 + 3 商店编辑器 @@ -9612,7 +9816,7 @@ 100, 23 - 10 + 6 掉落物编辑器 @@ -9645,7 +9849,7 @@ 104, 17 - 9 + 1 New Version Tip @@ -9714,7 +9918,7 @@ 100, 23 - 8 + 5 文本浏览器 @@ -9744,7 +9948,7 @@ 100, 23 - 7 + 4 奖池编辑器 @@ -9897,7 +10101,7 @@ 301, 111 - 5 + 2 设置 @@ -9927,7 +10131,7 @@ 25, 17 - 10 + 5 GC @@ -9951,7 +10155,7 @@ 100, 25 - 9 + 6 CmbGcVersions @@ -9975,13 +10179,13 @@ 147, 82 - 51, 21 + 75, 21 - 8 + 7 - 置顶 + 窗口置顶 ChkTopMost @@ -10002,7 +10206,7 @@ 100, 25 - 6 + 3 CmbLanguage @@ -10029,7 +10233,7 @@ 128, 17 - 5 + 4 语言/Language/язык @@ -10053,7 +10257,7 @@ 100, 23 - 3 + 1 NUDUid @@ -10080,7 +10284,7 @@ 133, 21 - 4 + 2 生成的命令包含UID @@ -10110,7 +10314,7 @@ 30, 17 - 1 + 0 UID @@ -10428,7 +10632,7 @@ 75, 23 - 8 + 12 + 添加 @@ -10458,7 +10662,7 @@ 75, 23 - 9 + 13 - 删除 @@ -10509,7 +10713,7 @@ 236, 234 - 11 + 15 TCMailRight @@ -10596,7 +10800,7 @@ 228, 23 - 12 + 0 TxtMailSelectableItemFilter @@ -10626,7 +10830,7 @@ 228, 140 - 13 + 1 ListMailSelectableItems @@ -10698,7 +10902,7 @@ 222, 30 - 18 + 2 PanelMailItemArgs @@ -10719,7 +10923,7 @@ 50, 23 - 15 + 3 NUDMailItemLevel @@ -10740,7 +10944,7 @@ 60, 23 - 14 + 1 NUDMailItemCount @@ -10767,7 +10971,7 @@ 44, 17 - 15 + 0 数量: @@ -10797,7 +11001,7 @@ 44, 17 - 17 + 2 等级: @@ -10929,7 +11133,7 @@ 222, 28 - 19 + 1 PanelMailListControls @@ -10953,7 +11157,7 @@ 75, 23 - 18 + 1 × 清空 @@ -10980,7 +11184,7 @@ 75, 23 - 17 + 0 - 删除 @@ -11010,7 +11214,7 @@ 75, 32 - 10 + 14 发送 @@ -11040,7 +11244,7 @@ 250, 89 - 7 + 11 ListMailItems @@ -11094,7 +11298,7 @@ 121, 23 - 4 + 5 NUDMailRecipient @@ -11121,7 +11325,7 @@ 50, 21 - 3 + 4 玩家 @@ -11151,7 +11355,7 @@ 62, 21 - 2 + 3 所有人 @@ -11181,7 +11385,7 @@ 56, 17 - 6 + 2 收件人: @@ -11214,7 +11418,7 @@ 331, 56 - 6 + 9 TxtMailContent @@ -11241,7 +11445,7 @@ 44, 17 - 4 + 8 内容: @@ -11265,7 +11469,7 @@ 331, 23 - 5 + 7 TxtMailTitle @@ -11292,7 +11496,7 @@ 44, 17 - 2 + 6 标题: