mirror of
https://github.com/colhountech/DarkUI.Net5.git
synced 2025-07-02 07:09:27 +03:00
20 lines
397 B
C#
20 lines
397 B
C#
using System.Windows.Forms;
|
|
|
|
namespace DarkUI
|
|
{
|
|
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
|
|
}
|
|
}
|