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

60 lines
1.7 KiB
C#
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

using ToolsDesktop.Interfaces;
using ToolsModule.ManagmentExtension;
using System;
using System.Drawing;
namespace ToolsDesktop.BaseControls
{
/// <summary>
/// Контрол, предоставляющий работу с однострочным текстовым полем
/// </summary>
public partial class BaseControlString : AbstractBaseControl, IBaseControl
{
/// <summary>
/// Конструктор
/// </summary>
/// <param name="propertyName"></param>
/// <param name="mustFilling"></param>
/// <param name="readOnly"></param>
/// <param name="maxLength"></param>
public BaseControlString(string propertyName, bool mustFilling, bool readOnly, int maxLength) : base(propertyName, mustFilling, readOnly)
{
InitializeComponent();
_baseControl = this;
if (maxLength != 0)
{
textBox.MaxLength = maxLength;
}
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;
}
}