mirror of
https://github.com/Stone-Red-Code/RemSox.git
synced 2026-09-04 17:16:24 +02:00
18 lines
372 B
C#
18 lines
372 B
C#
using System.Drawing;
|
|
|
|
namespace RemSox.UI.GUI.UIEelements.Controls;
|
|
|
|
public class Button() : Control("Button")
|
|
{
|
|
public string Text
|
|
{
|
|
get;
|
|
set => SetProperty(nameof(Text), ref field, value);
|
|
} = string.Empty;
|
|
|
|
public Color TextColor
|
|
{
|
|
get;
|
|
set => SetProperty(nameof(TextColor), ref field, value);
|
|
} = Color.Black;
|
|
} |