2021-04-01 21:30:29 +04:00
|
|
|
|
using DesktopTools.Interfaces;
|
|
|
|
|
using ModuleTools.Extensions;
|
2021-03-30 22:34:31 +04:00
|
|
|
|
using System;
|
|
|
|
|
using System.Drawing;
|
|
|
|
|
|
|
|
|
|
namespace DesktopTools.BaseControls
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Контрол, предоставляющий работу с однострочным текстовым полем
|
|
|
|
|
/// </summary>
|
2021-04-01 21:30:29 +04:00
|
|
|
|
public partial class BaseControlString : AbstractBaseControl, IBaseControl
|
2021-03-30 22:34:31 +04:00
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Конструктор
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="propertyName"></param>
|
|
|
|
|
/// <param name="mustFilling"></param>
|
|
|
|
|
/// <param name="readOnly"></param>
|
|
|
|
|
/// <param name="maxLength"></param>
|
|
|
|
|
public BaseControlString(string propertyName, bool mustFilling, bool readOnly, int? maxLength) : base(propertyName, mustFilling, readOnly)
|
|
|
|
|
{
|
|
|
|
|
InitializeComponent();
|
2021-04-01 21:30:29 +04:00
|
|
|
|
_baseControl = this;
|
|
|
|
|
|
2021-03-30 22:34:31 +04:00
|
|
|
|
if (maxLength.HasValue)
|
|
|
|
|
{
|
|
|
|
|
textBox.MaxLength = maxLength.Value;
|
|
|
|
|
}
|
|
|
|
|
textBox.TextChanged += (object sender, EventArgs e) => { CallOnValueChangeEvent(); };
|
|
|
|
|
panelControl.Controls.Add(textBox);
|
|
|
|
|
}
|
|
|
|
|
|
2021-04-01 21:30:29 +04:00
|
|
|
|
public void SetDefaultValue() => _originalValue = string.Empty;
|
2021-03-30 22:34:31 +04:00
|
|
|
|
|
2021-04-01 21:30:29 +04:00
|
|
|
|
public void SetValueToControl(object value) => textBox.Text = value?.ToString();
|
2021-03-30 22:34:31 +04:00
|
|
|
|
|
2021-04-01 21:30:29 +04:00
|
|
|
|
public void DropValueForControl() => textBox.Text = _originalValue?.ToString();
|
2021-03-30 22:34:31 +04:00
|
|
|
|
|
2021-04-01 21:30:29 +04:00
|
|
|
|
public bool CheckValueForControl()
|
2021-03-30 22:34:31 +04:00
|
|
|
|
{
|
|
|
|
|
if (_mustFilling && textBox.Text.IsEmpty())
|
|
|
|
|
{
|
|
|
|
|
BackColor = Color.OrangeRed;
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
2021-04-01 21:30:29 +04:00
|
|
|
|
public object GetValueFromControl()
|
2021-03-30 22:34:31 +04:00
|
|
|
|
{
|
|
|
|
|
if (_mustFilling && textBox.Text.IsEmpty())
|
|
|
|
|
{
|
|
|
|
|
throw new ArgumentNullException($"Поле свойства '{labelTitle.Text}' должно быть заполнено");
|
|
|
|
|
}
|
|
|
|
|
return textBox.Text;
|
|
|
|
|
}
|
2021-04-01 21:30:29 +04:00
|
|
|
|
|
|
|
|
|
public string GetPropertyName() => _propertyName;
|
2021-03-30 22:34:31 +04:00
|
|
|
|
}
|
|
|
|
|
}
|