Files
RemSox/UI/GUI/UIEelements/Control.cs
T
2026-06-08 21:30:40 +02:00

19 lines
381 B
C#

using System.Drawing;
namespace RemSox.UI.GUI.UIEelements;
public abstract class Control(string type) : UIElement(type)
{
public Color BackgroundColor
{
get;
set => SetProperty(nameof(BackgroundColor), ref field, value);
} = Color.LightGray;
public Size Size
{
get;
set => SetProperty(nameof(Size), ref field, value);
}
}