mirror of
https://github.com/Stone-Red-Code/DesktopMagic.git
synced 2026-09-04 23:39:29 +02:00
42 lines
1.2 KiB
C#
42 lines
1.2 KiB
C#
namespace DesktopMagicPluginAPI.Inputs
|
|
{
|
|
/// <summary>
|
|
/// Represents a label control.
|
|
/// </summary>
|
|
public class Label : Element
|
|
{
|
|
private string _value;
|
|
|
|
/// <summary>
|
|
/// Gets or sets the text associated with this <see cref="Label"/>.
|
|
/// </summary>
|
|
public string Value
|
|
{
|
|
get => _value;
|
|
set
|
|
{
|
|
if (_value != value)
|
|
{
|
|
_value = value;
|
|
ValueChanged();
|
|
}
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// Gets or set a value indicating whether the content of the <see cref="Label"/> is bold or not.
|
|
/// </summary>
|
|
public bool Bold { get; set; }
|
|
|
|
/// <summary>
|
|
/// Initializes a new instance of the <see cref="Label"/> class with the provided <paramref name="value"/>.
|
|
/// </summary>
|
|
/// <param name="value">The text associated with this <see cref="Label"/></param>
|
|
/// <param name="bold">A value indicating whether the content of the <see cref="Label"/> is bold or not.</param>
|
|
public Label(string value, bool bold = false)
|
|
{
|
|
Value = value;
|
|
Bold = bold;
|
|
}
|
|
}
|
|
} |