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