mirror of
https://github.com/Stone-Red-Code/RemSox.git
synced 2026-09-04 09:06:23 +02:00
Add printLine support for commands and implement basic UI controls rendering
This commit is contained in:
@@ -0,0 +1,18 @@
|
||||
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;
|
||||
}
|
||||
@@ -0,0 +1,24 @@
|
||||
using System.Drawing;
|
||||
|
||||
namespace RemSox.UI.GUI.UIEelements.Controls;
|
||||
|
||||
public class CheckBox() : Control("CheckBox")
|
||||
{
|
||||
public bool IsChecked
|
||||
{
|
||||
get;
|
||||
set => SetProperty(nameof(IsChecked), ref field, value);
|
||||
} = false;
|
||||
|
||||
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.White;
|
||||
}
|
||||
@@ -0,0 +1,12 @@
|
||||
using System.Drawing;
|
||||
|
||||
namespace RemSox.UI.GUI.UIEelements.Shapes;
|
||||
|
||||
public class Line() : Shape("Line")
|
||||
{
|
||||
public Point EndPosition
|
||||
{
|
||||
get;
|
||||
set => SetProperty(nameof(EndPosition), ref field, value);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user