mirror of
https://github.com/Stone-Red-Code/RemSox.git
synced 2026-09-04 17:16:24 +02:00
20 lines
395 B
C#
20 lines
395 B
C#
using System;
|
|
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);
|
|
}
|
|
}
|