mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-23 12:33:06 +00:00
Allow resize, add filename indication
This commit is contained in:
parent
a81c28f114
commit
921374c8eb
2 changed files with 2 additions and 1 deletions
|
@ -143,7 +143,6 @@
|
||||||
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
||||||
this.ClientSize = new System.Drawing.Size(609, 361);
|
this.ClientSize = new System.Drawing.Size(609, 361);
|
||||||
this.Controls.Add(this.TC_Tabs);
|
this.Controls.Add(this.TC_Tabs);
|
||||||
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
|
|
||||||
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
|
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
|
||||||
this.MaximizeBox = false;
|
this.MaximizeBox = false;
|
||||||
this.MinimizeBox = false;
|
this.MinimizeBox = false;
|
||||||
|
|
|
@ -174,6 +174,8 @@ namespace PKHeX.WinForms
|
||||||
// ReSharper disable once MemberCanBePrivate.Local
|
// ReSharper disable once MemberCanBePrivate.Local
|
||||||
// ReSharper disable once UnusedAutoPropertyAccessor.Local
|
// ReSharper disable once UnusedAutoPropertyAccessor.Local
|
||||||
public string Folder { get; }
|
public string Folder { get; }
|
||||||
|
|
||||||
|
public string Name => Path.GetFileName(Save.FilePath);
|
||||||
}
|
}
|
||||||
|
|
||||||
private ContextMenuStrip GetContextMenu(DataGridView dgv)
|
private ContextMenuStrip GetContextMenu(DataGridView dgv)
|
||||||
|
|
Loading…
Reference in a new issue