mirror of
https://github.com/colhountech/DarkUI.Net5.git
synced 2025-07-03 23:59:26 +03:00
21 lines
394 B
C#
21 lines
394 B
C#
using DarkUI.Forms;
|
|
using System.Windows.Forms;
|
|
|
|
namespace Example
|
|
{
|
|
public partial class DialogAbout : DarkDialog
|
|
{
|
|
#region Constructor Region
|
|
|
|
public DialogAbout()
|
|
{
|
|
InitializeComponent();
|
|
|
|
lblVersion.Text = $"Version: {Application.ProductVersion.ToString()}";
|
|
btnOk.Text = "Close";
|
|
}
|
|
|
|
#endregion
|
|
}
|
|
}
|