2022-03-18 22:48:14 +04:00
|
|
|
|
using ToolsDesktop.Interfaces;
|
2022-03-18 22:38:52 +04:00
|
|
|
|
using ToolsModule.Extensions;
|
2021-03-30 22:34:31 +04:00
|
|
|
|
using System;
|
|
|
|
|
using System.Drawing;
|
|
|
|
|
|
2022-03-18 22:48:14 +04:00
|
|
|
|
namespace ToolsDesktop.BaseControls
|
2021-03-30 22:34:31 +04:00
|
|
|
|
{
|
|
|
|
|
/// <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>
|
2021-04-03 11:38:27 +04:00
|
|
|
|
public BaseControlString(string propertyName, bool mustFilling, bool readOnly, int maxLength) : base(propertyName, mustFilling, readOnly)
|
2021-03-30 22:34:31 +04:00
|
|
|
|
{
|
|
|
|
|
InitializeComponent();
|
2021-04-01 21:30:29 +04:00
|
|
|
|
_baseControl = this;
|
|
|
|
|
|
2021-04-03 11:38:27 +04:00
|
|
|
|
if (maxLength != 0)
|
2021-03-30 22:34:31 +04:00
|
|
|
|
{
|
2021-04-03 11:38:27 +04:00
|
|
|
|
textBox.MaxLength = maxLength;
|
2021-03-30 22:34:31 +04:00
|
|
|
|
}
|
|
|
|
|
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
|
|
|
|
}
|
|
|
|
|
}
|