mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-16 17:18:00 +00:00
c2d5d0cd42
* Move pkhex.drawing calls out of form constructors designer doesn't like it; if Main can't be designed then there's some call that it can't process for whatever reason * Add netcore3 targeting Closes #2198 by adding a netcore3 build option Closes #2391 by retaining designer functionality and net46 builds
174 lines
No EOL
7.6 KiB
C#
174 lines
No EOL
7.6 KiB
C#
namespace PKHeX.WinForms
|
|
{
|
|
partial class SettingsEditor
|
|
{
|
|
/// <summary>
|
|
/// Required designer variable.
|
|
/// </summary>
|
|
private System.ComponentModel.IContainer components = null;
|
|
|
|
/// <summary>
|
|
/// Clean up any resources being used.
|
|
/// </summary>
|
|
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
|
|
protected override void Dispose(bool disposing)
|
|
{
|
|
if (disposing && (components != null))
|
|
{
|
|
components.Dispose();
|
|
}
|
|
base.Dispose(disposing);
|
|
}
|
|
|
|
#region Windows Form Designer generated code
|
|
|
|
/// <summary>
|
|
/// Required method for Designer support - do not modify
|
|
/// the contents of this method with the code editor.
|
|
/// </summary>
|
|
private void InitializeComponent()
|
|
{
|
|
this.FLP_Blank = new System.Windows.Forms.FlowLayoutPanel();
|
|
this.L_Blank = new System.Windows.Forms.Label();
|
|
this.CB_Blank = new System.Windows.Forms.ComboBox();
|
|
this.tabControl1 = new System.Windows.Forms.TabControl();
|
|
this.Tab_Bool = new System.Windows.Forms.TabPage();
|
|
this.FLP_Settings = new System.Windows.Forms.FlowLayoutPanel();
|
|
this.Tab_Color = new System.Windows.Forms.TabPage();
|
|
this.PG_Color = new System.Windows.Forms.PropertyGrid();
|
|
this.B_Reset = new System.Windows.Forms.Button();
|
|
this.FLP_Blank.SuspendLayout();
|
|
this.tabControl1.SuspendLayout();
|
|
this.Tab_Bool.SuspendLayout();
|
|
this.Tab_Color.SuspendLayout();
|
|
this.SuspendLayout();
|
|
//
|
|
// FLP_Blank
|
|
//
|
|
this.FLP_Blank.Controls.Add(this.L_Blank);
|
|
this.FLP_Blank.Controls.Add(this.CB_Blank);
|
|
this.FLP_Blank.Dock = System.Windows.Forms.DockStyle.Top;
|
|
this.FLP_Blank.Location = new System.Drawing.Point(0, 0);
|
|
this.FLP_Blank.Name = "FLP_Blank";
|
|
this.FLP_Blank.Size = new System.Drawing.Size(334, 27);
|
|
this.FLP_Blank.TabIndex = 1;
|
|
//
|
|
// L_Blank
|
|
//
|
|
this.L_Blank.AutoSize = true;
|
|
this.L_Blank.Location = new System.Drawing.Point(3, 0);
|
|
this.L_Blank.Name = "L_Blank";
|
|
this.L_Blank.Padding = new System.Windows.Forms.Padding(0, 6, 0, 0);
|
|
this.L_Blank.Size = new System.Drawing.Size(103, 19);
|
|
this.L_Blank.TabIndex = 0;
|
|
this.L_Blank.Text = "Blank Save Version:";
|
|
//
|
|
// CB_Blank
|
|
//
|
|
this.CB_Blank.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
|
|
this.CB_Blank.FormattingEnabled = true;
|
|
this.CB_Blank.Location = new System.Drawing.Point(112, 3);
|
|
this.CB_Blank.Name = "CB_Blank";
|
|
this.CB_Blank.Size = new System.Drawing.Size(137, 21);
|
|
this.CB_Blank.TabIndex = 1;
|
|
//
|
|
// tabControl1
|
|
//
|
|
this.tabControl1.Controls.Add(this.Tab_Bool);
|
|
this.tabControl1.Controls.Add(this.Tab_Color);
|
|
this.tabControl1.Dock = System.Windows.Forms.DockStyle.Fill;
|
|
this.tabControl1.Location = new System.Drawing.Point(0, 27);
|
|
this.tabControl1.Name = "tabControl1";
|
|
this.tabControl1.SelectedIndex = 0;
|
|
this.tabControl1.Size = new System.Drawing.Size(334, 284);
|
|
this.tabControl1.TabIndex = 3;
|
|
//
|
|
// Tab_Bool
|
|
//
|
|
this.Tab_Bool.Controls.Add(this.FLP_Settings);
|
|
this.Tab_Bool.Location = new System.Drawing.Point(4, 22);
|
|
this.Tab_Bool.Name = "Tab_Bool";
|
|
this.Tab_Bool.Padding = new System.Windows.Forms.Padding(3);
|
|
this.Tab_Bool.Size = new System.Drawing.Size(326, 258);
|
|
this.Tab_Bool.TabIndex = 0;
|
|
this.Tab_Bool.Text = "Toggles";
|
|
this.Tab_Bool.UseVisualStyleBackColor = true;
|
|
//
|
|
// FLP_Settings
|
|
//
|
|
this.FLP_Settings.AutoScroll = true;
|
|
this.FLP_Settings.Dock = System.Windows.Forms.DockStyle.Fill;
|
|
this.FLP_Settings.Location = new System.Drawing.Point(3, 3);
|
|
this.FLP_Settings.Name = "FLP_Settings";
|
|
this.FLP_Settings.Size = new System.Drawing.Size(320, 252);
|
|
this.FLP_Settings.TabIndex = 3;
|
|
//
|
|
// Tab_Color
|
|
//
|
|
this.Tab_Color.Controls.Add(this.PG_Color);
|
|
this.Tab_Color.Location = new System.Drawing.Point(4, 22);
|
|
this.Tab_Color.Name = "Tab_Color";
|
|
this.Tab_Color.Padding = new System.Windows.Forms.Padding(3);
|
|
this.Tab_Color.Size = new System.Drawing.Size(326, 258);
|
|
this.Tab_Color.TabIndex = 1;
|
|
this.Tab_Color.Text = "Colors";
|
|
this.Tab_Color.UseVisualStyleBackColor = true;
|
|
//
|
|
// PG_Color
|
|
//
|
|
this.PG_Color.Dock = System.Windows.Forms.DockStyle.Fill;
|
|
this.PG_Color.Location = new System.Drawing.Point(3, 3);
|
|
this.PG_Color.Name = "PG_Color";
|
|
this.PG_Color.Size = new System.Drawing.Size(320, 252);
|
|
this.PG_Color.TabIndex = 0;
|
|
//
|
|
// B_Reset
|
|
//
|
|
this.B_Reset.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
|
|
this.B_Reset.Location = new System.Drawing.Point(256, 2);
|
|
this.B_Reset.Name = "B_Reset";
|
|
this.B_Reset.Size = new System.Drawing.Size(75, 23);
|
|
this.B_Reset.TabIndex = 4;
|
|
this.B_Reset.Text = "Reset All";
|
|
this.B_Reset.UseVisualStyleBackColor = true;
|
|
//
|
|
// SettingsEditor
|
|
//
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Inherit;
|
|
this.AutoSize = true;
|
|
this.ClientSize = new System.Drawing.Size(334, 311);
|
|
this.Controls.Add(this.B_Reset);
|
|
this.Controls.Add(this.tabControl1);
|
|
this.Controls.Add(this.FLP_Blank);
|
|
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow;
|
|
this.Icon = global::PKHeX.WinForms.Properties.Resources.Icon;
|
|
this.KeyPreview = true;
|
|
this.MaximizeBox = false;
|
|
this.MinimizeBox = false;
|
|
this.Name = "SettingsEditor";
|
|
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
|
|
this.Text = "Settings";
|
|
this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.SettingsEditor_FormClosing);
|
|
this.KeyDown += new System.Windows.Forms.KeyEventHandler(this.SettingsEditor_KeyDown);
|
|
this.FLP_Blank.ResumeLayout(false);
|
|
this.FLP_Blank.PerformLayout();
|
|
this.tabControl1.ResumeLayout(false);
|
|
this.Tab_Bool.ResumeLayout(false);
|
|
this.Tab_Color.ResumeLayout(false);
|
|
this.ResumeLayout(false);
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private System.Windows.Forms.FlowLayoutPanel FLP_Blank;
|
|
private System.Windows.Forms.Label L_Blank;
|
|
private System.Windows.Forms.ComboBox CB_Blank;
|
|
private System.Windows.Forms.TabControl tabControl1;
|
|
private System.Windows.Forms.TabPage Tab_Bool;
|
|
private System.Windows.Forms.FlowLayoutPanel FLP_Settings;
|
|
private System.Windows.Forms.TabPage Tab_Color;
|
|
private System.Windows.Forms.PropertyGrid PG_Color;
|
|
private System.Windows.Forms.Button B_Reset;
|
|
}
|
|
} |