Allow resize, add filename indication

This commit is contained in:
Kurt 2018-07-15 21:28:27 -07:00
parent a81c28f114
commit 921374c8eb
2 changed files with 2 additions and 1 deletions

View file

@ -143,7 +143,6 @@
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(609, 361);
this.Controls.Add(this.TC_Tabs);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
this.MaximizeBox = false;
this.MinimizeBox = false;

View file

@ -174,6 +174,8 @@ namespace PKHeX.WinForms
// ReSharper disable once MemberCanBePrivate.Local
// ReSharper disable once UnusedAutoPropertyAccessor.Local
public string Folder { get; }
public string Name => Path.GetFileName(Save.FilePath);
}
private ContextMenuStrip GetContextMenu(DataGridView dgv)