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

66 lines
1.8 KiB
C#
Raw Normal View History

using DesktopTools.Interfaces;
using ToolsModule.Extensions;
using System;
using System.Drawing;
namespace DesktopTools.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;
}
}