Skip to content

Commit

Permalink
Add about form button
Browse files Browse the repository at this point in the history
  • Loading branch information
fahminlb33 committed Jun 27, 2020
1 parent 1f21876 commit dcf511b
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 2 deletions.
18 changes: 16 additions & 2 deletions src/KFmaintenance/Views/StartupForm.Designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 8 additions & 0 deletions src/KFmaintenance/Views/StartupForm.cs
Original file line number Diff line number Diff line change
Expand Up @@ -260,6 +260,14 @@ private void cmdCLIS_Click(object sender, EventArgs e)
_formService.ShowClis();
}

private void cmdAbout_Click(object sender, EventArgs e)
{
using (var frm = Program.Container.Resolve<AboutForm>())
{
frm.ShowDialog();
}
}

#endregion

#region Context Menu
Expand Down

0 comments on commit dcf511b

Please sign in to comment.