mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-10 22:54:14 +00:00
Disallow min/maximization of boxviewer
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
This commit is contained in:
parent
c3043b05e3
commit
d7b982728c
1 changed files with 4 additions and 0 deletions
|
@ -49,7 +49,9 @@
|
|||
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;
|
||||
|
@ -64,6 +66,8 @@
|
|||
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";
|
||||
|
|
Loading…
Reference in a new issue