66 lines
1.8 KiB
C#
66 lines
1.8 KiB
C#
using DesktopTools.Interfaces;
|
||
using ModuleTools.Extensions;
|
||
using System;
|
||
using System.Drawing;
|
||
|
||
namespace DesktopTools.BaseControls
|
||
{
|
||
/// <summary>
|
||
/// Контрол, предоставляющий работу с текстовым полем на несколько строк
|
||
/// </summary>
|
||
public partial class BaseControlText : AbstractBaseControl, IBaseControl
|
||
{
|
||
/// <summary>
|
||
/// Конструктор
|
||
/// </summary>
|
||
/// <param name="propertyName"></param>
|
||
/// <param name="mustFilling"></param>
|
||
/// <param name="readOnly"></param>
|
||
/// <param name="maxLength"></param>
|
||
/// <param name="height"></param>
|
||
public BaseControlText(string propertyName, bool mustFilling, bool readOnly, int? maxLength, int? height) : base(propertyName, mustFilling, readOnly)
|
||
{
|
||
InitializeComponent();
|
||
_baseControl = this;
|
||
|
||
if (maxLength.HasValue)
|
||
{
|
||
textBox.MaxLength = maxLength.Value;
|
||
}
|
||
if (height.HasValue)
|
||
{
|
||
textBox.Height = height.Value;
|
||
Height = height.Value;
|
||
}
|
||
textBox.TextChanged += (object sender, EventArgs e) => { CallOnValueChangeEvent(); };
|
||
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()
|
||
{
|
||
if(_mustFilling && textBox.Text.IsEmpty())
|
||
{
|
||
BackColor = Color.OrangeRed;
|
||
return false;
|
||
}
|
||
return true;
|
||
}
|
||
|
||
public object GetValueFromControl()
|
||
{
|
||
if (_mustFilling && textBox.Text.IsEmpty())
|
||
{
|
||
throw new ArgumentNullException($"Поле свойства '{labelTitle.Text}' должно быть заполнено");
|
||
}
|
||
return textBox.Text;
|
||
}
|
||
|
||
public string GetPropertyName() => _propertyName;
|
||
}
|
||
} |