mirror of
https://github.com/jie65535/GrasscutterCommandGenerator.git
synced 2025-06-07 22:59:14 +08:00
Fix tab order (#152)
This commit is contained in:
parent
6c23915615
commit
f1eb40bb0d
38
Source/GrasscutterTools/Forms/FormMain.Designer.cs
generated
38
Source/GrasscutterTools/Forms/FormMain.Designer.cs
generated
@ -225,7 +225,7 @@ namespace GrasscutterTools.Forms
|
|||||||
this.TCSpawnItems = new System.Windows.Forms.TabControl();
|
this.TCSpawnItems = new System.Windows.Forms.TabControl();
|
||||||
this.TPSpawnItems = new System.Windows.Forms.TabPage();
|
this.TPSpawnItems = new System.Windows.Forms.TabPage();
|
||||||
this.ListEntity = new System.Windows.Forms.ListBox();
|
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.TxtEntityFilter = new System.Windows.Forms.TextBox();
|
||||||
this.BtnFilterEntity = new System.Windows.Forms.Button();
|
this.BtnFilterEntity = new System.Windows.Forms.Button();
|
||||||
this.TPSpawnRecords = new System.Windows.Forms.TabPage();
|
this.TPSpawnRecords = new System.Windows.Forms.TabPage();
|
||||||
@ -245,6 +245,7 @@ namespace GrasscutterTools.Forms
|
|||||||
this.TxtQuestFilter = new System.Windows.Forms.TextBox();
|
this.TxtQuestFilter = new System.Windows.Forms.TextBox();
|
||||||
this.ListQuest = new System.Windows.Forms.ListBox();
|
this.ListQuest = new System.Windows.Forms.ListBox();
|
||||||
this.TPArtifact = new System.Windows.Forms.TabPage();
|
this.TPArtifact = new System.Windows.Forms.TabPage();
|
||||||
|
this.LnkCharacterBuilder = new System.Windows.Forms.LinkLabel();
|
||||||
this.LblArtifactLevelTip = new System.Windows.Forms.Label();
|
this.LblArtifactLevelTip = new System.Windows.Forms.Label();
|
||||||
this.BtnAddSubAttr = new System.Windows.Forms.Button();
|
this.BtnAddSubAttr = new System.Windows.Forms.Button();
|
||||||
this.LblArtifactName = new System.Windows.Forms.Label();
|
this.LblArtifactName = new System.Windows.Forms.Label();
|
||||||
@ -324,7 +325,6 @@ namespace GrasscutterTools.Forms
|
|||||||
this.TxtMailSender = new System.Windows.Forms.TextBox();
|
this.TxtMailSender = new System.Windows.Forms.TextBox();
|
||||||
this.LblMailSenderLabel = new System.Windows.Forms.Label();
|
this.LblMailSenderLabel = new System.Windows.Forms.Label();
|
||||||
this.MenuSpawnEntityFilter = new System.Windows.Forms.ContextMenuStrip(this.components);
|
this.MenuSpawnEntityFilter = new System.Windows.Forms.ContextMenuStrip(this.components);
|
||||||
this.LnkCharacterBuilder = new System.Windows.Forms.LinkLabel();
|
|
||||||
this.GrpCommand.SuspendLayout();
|
this.GrpCommand.SuspendLayout();
|
||||||
this.TPRemoteCall.SuspendLayout();
|
this.TPRemoteCall.SuspendLayout();
|
||||||
this.GrpServerStatus.SuspendLayout();
|
this.GrpServerStatus.SuspendLayout();
|
||||||
@ -390,7 +390,7 @@ namespace GrasscutterTools.Forms
|
|||||||
((System.ComponentModel.ISupportInitialize)(this.NUDAiwiRadius)).BeginInit();
|
((System.ComponentModel.ISupportInitialize)(this.NUDAiwiRadius)).BeginInit();
|
||||||
this.TCSpawnItems.SuspendLayout();
|
this.TCSpawnItems.SuspendLayout();
|
||||||
this.TPSpawnItems.SuspendLayout();
|
this.TPSpawnItems.SuspendLayout();
|
||||||
this.panel1.SuspendLayout();
|
this.PanelEntityFilterBar.SuspendLayout();
|
||||||
this.TPSpawnRecords.SuspendLayout();
|
this.TPSpawnRecords.SuspendLayout();
|
||||||
this.FLPSpawnRecordControls.SuspendLayout();
|
this.FLPSpawnRecordControls.SuspendLayout();
|
||||||
this.TPQuest.SuspendLayout();
|
this.TPQuest.SuspendLayout();
|
||||||
@ -2209,7 +2209,7 @@ namespace GrasscutterTools.Forms
|
|||||||
// TPSpawnItems
|
// TPSpawnItems
|
||||||
//
|
//
|
||||||
this.TPSpawnItems.Controls.Add(this.ListEntity);
|
this.TPSpawnItems.Controls.Add(this.ListEntity);
|
||||||
this.TPSpawnItems.Controls.Add(this.panel1);
|
this.TPSpawnItems.Controls.Add(this.PanelEntityFilterBar);
|
||||||
resources.ApplyResources(this.TPSpawnItems, "TPSpawnItems");
|
resources.ApplyResources(this.TPSpawnItems, "TPSpawnItems");
|
||||||
this.TPSpawnItems.Name = "TPSpawnItems";
|
this.TPSpawnItems.Name = "TPSpawnItems";
|
||||||
this.TPSpawnItems.UseVisualStyleBackColor = true;
|
this.TPSpawnItems.UseVisualStyleBackColor = true;
|
||||||
@ -2221,12 +2221,12 @@ namespace GrasscutterTools.Forms
|
|||||||
this.ListEntity.Name = "ListEntity";
|
this.ListEntity.Name = "ListEntity";
|
||||||
this.ListEntity.SelectedIndexChanged += new System.EventHandler(this.ListEntity_SelectedIndexChanged);
|
this.ListEntity.SelectedIndexChanged += new System.EventHandler(this.ListEntity_SelectedIndexChanged);
|
||||||
//
|
//
|
||||||
// panel1
|
// PanelEntityFilterBar
|
||||||
//
|
//
|
||||||
this.panel1.Controls.Add(this.TxtEntityFilter);
|
this.PanelEntityFilterBar.Controls.Add(this.TxtEntityFilter);
|
||||||
this.panel1.Controls.Add(this.BtnFilterEntity);
|
this.PanelEntityFilterBar.Controls.Add(this.BtnFilterEntity);
|
||||||
resources.ApplyResources(this.panel1, "panel1");
|
resources.ApplyResources(this.PanelEntityFilterBar, "PanelEntityFilterBar");
|
||||||
this.panel1.Name = "panel1";
|
this.PanelEntityFilterBar.Name = "PanelEntityFilterBar";
|
||||||
//
|
//
|
||||||
// TxtEntityFilter
|
// TxtEntityFilter
|
||||||
//
|
//
|
||||||
@ -2389,6 +2389,13 @@ namespace GrasscutterTools.Forms
|
|||||||
this.TPArtifact.Name = "TPArtifact";
|
this.TPArtifact.Name = "TPArtifact";
|
||||||
this.TPArtifact.UseVisualStyleBackColor = true;
|
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
|
// LblArtifactLevelTip
|
||||||
//
|
//
|
||||||
resources.ApplyResources(this.LblArtifactLevelTip, "LblArtifactLevelTip");
|
resources.ApplyResources(this.LblArtifactLevelTip, "LblArtifactLevelTip");
|
||||||
@ -3025,13 +3032,6 @@ namespace GrasscutterTools.Forms
|
|||||||
this.MenuSpawnEntityFilter.Name = "MenuSpawnEntityFilter";
|
this.MenuSpawnEntityFilter.Name = "MenuSpawnEntityFilter";
|
||||||
resources.ApplyResources(this.MenuSpawnEntityFilter, "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
|
// FormMain
|
||||||
//
|
//
|
||||||
resources.ApplyResources(this, "$this");
|
resources.ApplyResources(this, "$this");
|
||||||
@ -3128,8 +3128,8 @@ namespace GrasscutterTools.Forms
|
|||||||
((System.ComponentModel.ISupportInitialize)(this.NUDAiwiRadius)).EndInit();
|
((System.ComponentModel.ISupportInitialize)(this.NUDAiwiRadius)).EndInit();
|
||||||
this.TCSpawnItems.ResumeLayout(false);
|
this.TCSpawnItems.ResumeLayout(false);
|
||||||
this.TPSpawnItems.ResumeLayout(false);
|
this.TPSpawnItems.ResumeLayout(false);
|
||||||
this.panel1.ResumeLayout(false);
|
this.PanelEntityFilterBar.ResumeLayout(false);
|
||||||
this.panel1.PerformLayout();
|
this.PanelEntityFilterBar.PerformLayout();
|
||||||
this.TPSpawnRecords.ResumeLayout(false);
|
this.TPSpawnRecords.ResumeLayout(false);
|
||||||
this.TPSpawnRecords.PerformLayout();
|
this.TPSpawnRecords.PerformLayout();
|
||||||
this.FLPSpawnRecordControls.ResumeLayout(false);
|
this.FLPSpawnRecordControls.ResumeLayout(false);
|
||||||
@ -3413,7 +3413,7 @@ namespace GrasscutterTools.Forms
|
|||||||
private System.Windows.Forms.TabPage TPSpawnArgs;
|
private System.Windows.Forms.TabPage TPSpawnArgs;
|
||||||
private System.Windows.Forms.TabPage TPAttackModArgs;
|
private System.Windows.Forms.TabPage TPAttackModArgs;
|
||||||
private System.Windows.Forms.Button BtnFilterEntity;
|
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.FlowLayoutPanel FLPSpawnRecordControls;
|
||||||
private System.Windows.Forms.ContextMenuStrip MenuSpawnEntityFilter;
|
private System.Windows.Forms.ContextMenuStrip MenuSpawnEntityFilter;
|
||||||
private System.Windows.Forms.GroupBox GrpAMSkills;
|
private System.Windows.Forms.GroupBox GrpAMSkills;
|
||||||
|
File diff suppressed because it is too large
Load Diff
Loading…
Reference in New Issue
Block a user