Files
RemSox/UI/GUI/UIEelements/Text.cs
T

19 lines
360 B
C#

using System.Drawing;
namespace RemSox.UI.GUI.UIEelements;
public class Text() : UIElement("Text")
{
public string Content
{
get;
set => SetProperty(nameof(Content), ref field, value);
} = string.Empty;
public Color Color
{
get;
set => SetProperty(nameof(Color), ref field, value);
} = Color.White;
}