mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-15 00:37:11 +00:00
d7b982728c
can double click or use windows keys to minimize don't want that other props are just updating themselves with the boxview control prop additions
84 lines
No EOL
3.4 KiB
C#
84 lines
No EOL
3.4 KiB
C#
namespace PKHeX.WinForms
|
|
{
|
|
partial class SAV_BoxViewer
|
|
{
|
|
/// <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(SAV_BoxViewer));
|
|
this.PB_BoxSwap = new System.Windows.Forms.PictureBox();
|
|
this.Box = new PKHeX.WinForms.Controls.BoxEditor();
|
|
((System.ComponentModel.ISupportInitialize)(this.PB_BoxSwap)).BeginInit();
|
|
this.SuspendLayout();
|
|
//
|
|
// PB_BoxSwap
|
|
//
|
|
this.PB_BoxSwap.Image = global::PKHeX.WinForms.Properties.Resources.swapBox;
|
|
this.PB_BoxSwap.Location = new System.Drawing.Point(0, 0);
|
|
this.PB_BoxSwap.Name = "PB_BoxSwap";
|
|
this.PB_BoxSwap.Size = new System.Drawing.Size(24, 24);
|
|
this.PB_BoxSwap.TabIndex = 67;
|
|
this.PB_BoxSwap.TabStop = false;
|
|
this.PB_BoxSwap.Click += new System.EventHandler(this.PB_BoxSwap_Click);
|
|
//
|
|
// Box
|
|
//
|
|
this.Box.AllowDrop = true;
|
|
this.Box.CurrentBox = -1;
|
|
this.Box.Dock = System.Windows.Forms.DockStyle.Fill;
|
|
this.Box.FlagIllegal = false;
|
|
this.Box.Location = new System.Drawing.Point(0, 0);
|
|
this.Box.M = null;
|
|
this.Box.Name = "Box";
|
|
this.Box.Size = new System.Drawing.Size(250, 185);
|
|
this.Box.TabIndex = 68;
|
|
//
|
|
// SAV_BoxViewer
|
|
//
|
|
this.AllowDrop = true;
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.ClientSize = new System.Drawing.Size(250, 185);
|
|
this.Controls.Add(this.PB_BoxSwap);
|
|
this.Controls.Add(this.Box);
|
|
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow;
|
|
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
|
|
this.MaximizeBox = false;
|
|
this.MinimizeBox = false;
|
|
this.Name = "SAV_BoxViewer";
|
|
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
|
|
this.Text = "Box Viewer";
|
|
this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.SAV_BoxViewer_FormClosing);
|
|
((System.ComponentModel.ISupportInitialize)(this.PB_BoxSwap)).EndInit();
|
|
this.ResumeLayout(false);
|
|
|
|
}
|
|
|
|
#endregion
|
|
private System.Windows.Forms.PictureBox PB_BoxSwap;
|
|
public Controls.BoxEditor Box;
|
|
}
|
|
} |