2022-03-18 22:48:14 +04:00
|
|
|
|
using ToolsDesktop.Interfaces;
|
2022-03-18 22:38:52 +04:00
|
|
|
|
using ToolsModule.Extensions;
|
2021-03-29 23:16:11 +04:00
|
|
|
|
using System;
|
|
|
|
|
using System.Drawing;
|
|
|
|
|
|
2022-03-18 22:48:14 +04:00
|
|
|
|
namespace ToolsDesktop.BaseControls
|
2021-03-29 23:16:11 +04:00
|
|
|
|
{
|
2021-03-30 22:34:31 +04:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Контрол, предоставляющий работу с текстовым полем на несколько строк
|
|
|
|
|
/// </summary>
|
2021-04-01 21:30:29 +04:00
|
|
|
|
public partial class BaseControlText : AbstractBaseControl, IBaseControl
|
2021-03-29 23:16:11 +04:00
|
|
|
|
{
|
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>
|
|
|
|
|
/// <param name="height"></param>
|
2021-04-03 11:38:27 +04:00
|
|
|
|
public BaseControlText(string propertyName, bool mustFilling, bool readOnly, int maxLength, int height) : base(propertyName, mustFilling, readOnly)
|
2021-03-29 23:16:11 +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
|
|
|
|
}
|
2021-04-03 11:38:27 +04:00
|
|
|
|
if (height != 0)
|
2021-03-30 22:34:31 +04:00
|
|
|
|
{
|
2021-04-03 11:38:27 +04:00
|
|
|
|
textBox.Height = height;
|
|
|
|
|
Height = height;
|
2021-03-30 22:34:31 +04:00
|
|
|
|
}
|
2021-03-29 23:16:11 +04:00
|
|
|
|
textBox.TextChanged += (object sender, EventArgs e) => { CallOnValueChangeEvent(); };
|
2021-03-30 22:34:31 +04:00
|
|
|
|
panelControl.Controls.Add(textBox);
|
2021-03-29 23:16:11 +04:00
|
|
|
|
}
|
|
|
|
|
|
2021-04-01 21:30:29 +04:00
|
|
|
|
public void SetDefaultValue() => _originalValue = string.Empty;
|
2021-03-29 23:16:11 +04:00
|
|
|
|
|
2021-04-01 21:30:29 +04:00
|
|
|
|
public void SetValueToControl(object value) => textBox.Text = value?.ToString();
|
2021-03-29 23:16:11 +04:00
|
|
|
|
|
2021-04-01 21:30:29 +04:00
|
|
|
|
public void DropValueForControl() => textBox.Text = _originalValue?.ToString();
|
2021-03-29 23:16:11 +04:00
|
|
|
|
|
2021-04-01 21:30:29 +04:00
|
|
|
|
public bool CheckValueForControl()
|
2021-03-29 23:16:11 +04:00
|
|
|
|
{
|
2021-03-30 22:34:31 +04:00
|
|
|
|
if(_mustFilling && textBox.Text.IsEmpty())
|
2021-03-29 23:16:11 +04:00
|
|
|
|
{
|
|
|
|
|
BackColor = Color.OrangeRed;
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
2021-04-01 21:30:29 +04:00
|
|
|
|
public object GetValueFromControl()
|
2021-03-29 23:16:11 +04:00
|
|
|
|
{
|
2021-03-30 22:34:31 +04:00
|
|
|
|
if (_mustFilling && textBox.Text.IsEmpty())
|
2021-03-29 23:16:11 +04:00
|
|
|
|
{
|
|
|
|
|
throw new ArgumentNullException($"Поле свойства '{labelTitle.Text}' должно быть заполнено");
|
|
|
|
|
}
|
|
|
|
|
return textBox.Text;
|
|
|
|
|
}
|
2021-04-01 21:30:29 +04:00
|
|
|
|
|
|
|
|
|
public string GetPropertyName() => _propertyName;
|
2021-03-29 23:16:11 +04:00
|
|
|
|
}
|
|
|
|
|
}
|