about dialog should have a close button, at least on winforms

This commit is contained in:
Michael Becker 2020-03-23 01:33:32 -04:00
parent 454e2ebeb7
commit 9e7e7b6176
No known key found for this signature in database
GPG Key ID: 389DFF5D73781A12

View File

@ -9,6 +9,11 @@ namespace UniversalEditor.UserInterface.Dialogs
{
private ListView tvComponents;
public AboutDialog()
{
Buttons.Add(new Button(StockType.Close, DialogResult.Cancel));
}
protected override void OnCreating (EventArgs e)
{
base.OnCreating (e);