mirror of
https://github.com/colhountech/DarkUI.Net5.git
synced 2025-07-03 07:39:28 +03:00
21 lines
427 B
C#
21 lines
427 B
C#
using DarkUI.Config;
|
|
using System.Windows.Forms;
|
|
|
|
namespace DarkUI.Controls
|
|
{
|
|
public class DarkTextBox : TextBox
|
|
{
|
|
#region Constructor Region
|
|
|
|
public DarkTextBox()
|
|
{
|
|
BackColor = Colors.LightBackground;
|
|
ForeColor = Colors.LightText;
|
|
Padding = new Padding(2, 2, 2, 2);
|
|
BorderStyle = BorderStyle.FixedSingle;
|
|
}
|
|
|
|
#endregion
|
|
}
|
|
}
|