mirror of
https://github.com/Stone-Red-Code/RemSox.git
synced 2026-09-04 00:56:19 +02:00
38 lines
875 B
C#
38 lines
875 B
C#
using System.Drawing;
|
|
|
|
namespace RemSox.UI.GUI.UIEelements.Controls;
|
|
|
|
public class CheckBox() : Control("CheckBox")
|
|
{
|
|
public event EventHandler? OnCheckedChanged;
|
|
|
|
public bool IsChecked
|
|
{
|
|
get;
|
|
set
|
|
{
|
|
SetProperty(nameof(IsChecked), ref field, value);
|
|
OnCheckedChanged?.Invoke(this, EventArgs.Empty);
|
|
}
|
|
} = 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;
|
|
|
|
public override void HandleMouseEvent(MouseEvent mouseEvent)
|
|
{
|
|
if (mouseEvent.Type == MouseEventType.ButtonDown && mouseEvent.Button == MouseButton.Left)
|
|
{
|
|
IsChecked = !IsChecked;
|
|
}
|
|
}
|
|
} |