mirror of
https://github.com/colhountech/DarkUI.Net5.git
synced 2025-07-05 08:29:26 +03:00
17 lines
247 B
C#
17 lines
247 B
C#
using System.Windows.Forms;
|
|
|
|
namespace DarkUI
|
|
{
|
|
public class DarkForm : Form
|
|
{
|
|
#region Constructor Region
|
|
|
|
public DarkForm()
|
|
{
|
|
BackColor = Colors.GreyBackground;
|
|
}
|
|
|
|
#endregion
|
|
}
|
|
}
|