Revert "- Rename src to _src"

This reverts commit 441a8b00cc.
This commit is contained in:
Stone_Red
2021-12-23 11:12:51 +01:00
parent 441a8b00cc
commit d1c598505e
171 changed files with 0 additions and 26339 deletions
@@ -0,0 +1,35 @@
namespace DesktopMagicPluginAPI.Inputs
{
/// <summary>
/// Represents a text box control.
/// </summary>
public class TextBox : Element
{
private string _value;
/// <summary>
/// Gets or sets the text associated with this <see cref="TextBox"/>.
/// </summary>
public string Value
{
get => _value;
set
{
if (_value != value)
{
_value = value;
ValueChanged();
}
}
}
/// <summary>
/// Initializes a new instance of the <see cref="TextBox"/> class with the provided <paramref name="value"/>.
/// </summary>
/// <param name="value">The text associated with this control.</param>
public TextBox(string value)
{
Value = value;
}
}
}