mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-15 08:47:14 +00:00
ea8c6d299a
Added about-shortcuts and fixed a few things including secret base flags.
126 lines
No EOL
5.6 KiB
C#
126 lines
No EOL
5.6 KiB
C#
namespace PKHeX
|
|
{
|
|
partial class About
|
|
{
|
|
/// <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()
|
|
{
|
|
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(About));
|
|
this.B_Close = new System.Windows.Forms.Button();
|
|
this.RTB = new System.Windows.Forms.RichTextBox();
|
|
this.L_Thanks = new System.Windows.Forms.Label();
|
|
this.L_Codr = new System.Windows.Forms.Label();
|
|
this.B_Shortcuts = new System.Windows.Forms.Button();
|
|
this.SuspendLayout();
|
|
//
|
|
// B_Close
|
|
//
|
|
this.B_Close.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
|
|
this.B_Close.Location = new System.Drawing.Point(412, 340);
|
|
this.B_Close.Name = "B_Close";
|
|
this.B_Close.Size = new System.Drawing.Size(75, 23);
|
|
this.B_Close.TabIndex = 0;
|
|
this.B_Close.Text = "Close";
|
|
this.B_Close.UseVisualStyleBackColor = true;
|
|
this.B_Close.Click += new System.EventHandler(this.B_Close_Click);
|
|
//
|
|
// RTB
|
|
//
|
|
this.RTB.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
|
|
| System.Windows.Forms.AnchorStyles.Left)
|
|
| System.Windows.Forms.AnchorStyles.Right)));
|
|
this.RTB.Location = new System.Drawing.Point(7, 9);
|
|
this.RTB.Name = "RTB";
|
|
this.RTB.ReadOnly = true;
|
|
this.RTB.Size = new System.Drawing.Size(480, 322);
|
|
this.RTB.TabIndex = 1;
|
|
this.RTB.Text = "";
|
|
this.RTB.WordWrap = false;
|
|
//
|
|
// L_Thanks
|
|
//
|
|
this.L_Thanks.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
|
|
this.L_Thanks.AutoSize = true;
|
|
this.L_Thanks.Location = new System.Drawing.Point(12, 345);
|
|
this.L_Thanks.Name = "L_Thanks";
|
|
this.L_Thanks.Size = new System.Drawing.Size(147, 13);
|
|
this.L_Thanks.TabIndex = 2;
|
|
this.L_Thanks.Text = "Thanks to all the researchers!";
|
|
//
|
|
// L_Codr
|
|
//
|
|
this.L_Codr.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
|
|
| System.Windows.Forms.AnchorStyles.Right)));
|
|
this.L_Codr.AutoSize = true;
|
|
this.L_Codr.Location = new System.Drawing.Point(163, 345);
|
|
this.L_Codr.Name = "L_Codr";
|
|
this.L_Codr.Size = new System.Drawing.Size(157, 13);
|
|
this.L_Codr.TabIndex = 3;
|
|
this.L_Codr.Text = "UI Inspiried by Codr\'s PokeGen.";
|
|
//
|
|
// B_Shortcuts
|
|
//
|
|
this.B_Shortcuts.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
|
|
this.B_Shortcuts.Location = new System.Drawing.Point(337, 340);
|
|
this.B_Shortcuts.Name = "B_Shortcuts";
|
|
this.B_Shortcuts.Size = new System.Drawing.Size(69, 23);
|
|
this.B_Shortcuts.TabIndex = 4;
|
|
this.B_Shortcuts.Text = "Shortcuts";
|
|
this.B_Shortcuts.UseVisualStyleBackColor = true;
|
|
this.B_Shortcuts.Click += new System.EventHandler(this.B_Shortcuts_Click);
|
|
//
|
|
// About
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.ClientSize = new System.Drawing.Size(494, 372);
|
|
this.Controls.Add(this.B_Shortcuts);
|
|
this.Controls.Add(this.L_Codr);
|
|
this.Controls.Add(this.L_Thanks);
|
|
this.Controls.Add(this.RTB);
|
|
this.Controls.Add(this.B_Close);
|
|
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
|
|
this.MaximizeBox = false;
|
|
this.MaximumSize = new System.Drawing.Size(910, 710);
|
|
this.MinimizeBox = false;
|
|
this.MinimumSize = new System.Drawing.Size(510, 410);
|
|
this.Name = "About";
|
|
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
|
|
this.Text = "About";
|
|
this.ResumeLayout(false);
|
|
this.PerformLayout();
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private System.Windows.Forms.Button B_Close;
|
|
private System.Windows.Forms.RichTextBox RTB;
|
|
private System.Windows.Forms.Label L_Thanks;
|
|
private System.Windows.Forms.Label L_Codr;
|
|
private System.Windows.Forms.Button B_Shortcuts;
|
|
}
|
|
} |