DepartmentProject/DepartmentPortal/Common/ToolsDesktop/BaseControls/BaseControlText.cs

66 lines
1.8 KiB
C#
Raw Permalink Normal View History

2022-03-18 22:48:14 +04:00
using ToolsDesktop.Interfaces;
2022-03-20 10:10:44 +04:00
using ToolsModule.ManagmentExtension;
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>
public partial class BaseControlText : 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>
/// <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)
{
InitializeComponent();
_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
}
textBox.TextChanged += (object sender, EventArgs e) => { CallOnValueChangeEvent(); };
2021-03-30 22:34:31 +04:00
panelControl.Controls.Add(textBox);
}
public void SetDefaultValue() => _originalValue = string.Empty;
public void SetValueToControl(object value) => textBox.Text = value?.ToString();
public void DropValueForControl() => textBox.Text = _originalValue?.ToString();
public bool CheckValueForControl()
{
2021-03-30 22:34:31 +04:00
if(_mustFilling && textBox.Text.IsEmpty())
{
BackColor = Color.OrangeRed;
return false;
}
return true;
}
public object GetValueFromControl()
{
2021-03-30 22:34:31 +04:00
if (_mustFilling && textBox.Text.IsEmpty())
{
throw new ArgumentNullException($"Поле свойства '{labelTitle.Text}' должно быть заполнено");
}
return textBox.Text;
}
public string GetPropertyName() => _propertyName;
}
}