mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-15 00:37:11 +00:00
59ac78b70a
set the usercontrol to inherit from whatever it is placed on; fixes the clipping issue noted in the forums Thanks english09, wejhvabewjty, & zkrxpdlf3!
85 lines
3.1 KiB
C#
85 lines
3.1 KiB
C#
namespace PKHeX.WinForms.Controls
|
|
{
|
|
partial class ContextMenuPKM
|
|
{
|
|
/// <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 Component 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.components = new System.ComponentModel.Container();
|
|
this.mnuL = new System.Windows.Forms.ContextMenuStrip(this.components);
|
|
this.mnuLLegality = new System.Windows.Forms.ToolStripMenuItem();
|
|
this.mnuLQR = new System.Windows.Forms.ToolStripMenuItem();
|
|
this.mnuLSave = new System.Windows.Forms.ToolStripMenuItem();
|
|
this.mnuL.SuspendLayout();
|
|
this.SuspendLayout();
|
|
//
|
|
// mnuL
|
|
//
|
|
this.mnuL.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
|
|
this.mnuLLegality,
|
|
this.mnuLQR,
|
|
this.mnuLSave});
|
|
this.mnuL.Name = "mnuL";
|
|
this.mnuL.Size = new System.Drawing.Size(122, 70);
|
|
//
|
|
// mnuLLegality
|
|
//
|
|
this.mnuLLegality.Name = "mnuLLegality";
|
|
this.mnuLLegality.Size = new System.Drawing.Size(121, 22);
|
|
this.mnuLLegality.Text = "Legality";
|
|
this.mnuLLegality.Click += new System.EventHandler(this.ClickShowLegality);
|
|
//
|
|
// mnuLQR
|
|
//
|
|
this.mnuLQR.Name = "mnuLQR";
|
|
this.mnuLQR.Size = new System.Drawing.Size(121, 22);
|
|
this.mnuLQR.Text = "QR!";
|
|
this.mnuLQR.Click += new System.EventHandler(this.ClickShowQR);
|
|
//
|
|
// mnuLSave
|
|
//
|
|
this.mnuLSave.Name = "mnuLSave";
|
|
this.mnuLSave.Size = new System.Drawing.Size(121, 22);
|
|
this.mnuLSave.Text = "Save as...";
|
|
this.mnuLSave.Click += new System.EventHandler(this.ClickSaveAs);
|
|
//
|
|
// ContextMenuPKM
|
|
//
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Inherit;
|
|
this.Name = "ContextMenuPKM";
|
|
this.mnuL.ResumeLayout(false);
|
|
this.ResumeLayout(false);
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
public System.Windows.Forms.ContextMenuStrip mnuL;
|
|
private System.Windows.Forms.ToolStripMenuItem mnuLLegality;
|
|
private System.Windows.Forms.ToolStripMenuItem mnuLQR;
|
|
private System.Windows.Forms.ToolStripMenuItem mnuLSave;
|
|
}
|
|
}
|