2021-04-01 21:30:29 +04:00
|
|
|
|
using DesktopTools.Interfaces;
|
|
|
|
|
using System;
|
2021-03-30 22:34:31 +04:00
|
|
|
|
using System.Drawing;
|
|
|
|
|
using System.Windows.Forms;
|
|
|
|
|
|
|
|
|
|
namespace DesktopTools.BaseControls
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Контрол, предоставляющий работу с перечислениями
|
|
|
|
|
/// </summary>
|
2021-04-01 21:30:29 +04:00
|
|
|
|
public partial class BaseControlEnum : 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="enumType"></param>
|
|
|
|
|
public BaseControlEnum(string propertyName, bool mustFilling, bool readOnly, Type enumType) : base(propertyName, mustFilling, readOnly)
|
|
|
|
|
{
|
|
|
|
|
InitializeComponent();
|
2021-04-01 21:30:29 +04:00
|
|
|
|
_baseControl = this;
|
|
|
|
|
|
2021-04-06 22:07:11 +04:00
|
|
|
|
if (enumType.Name.StartsWith("Nullable"))
|
|
|
|
|
{
|
|
|
|
|
enumType = Nullable.GetUnderlyingType(enumType);
|
|
|
|
|
}
|
2021-03-30 22:34:31 +04:00
|
|
|
|
|
|
|
|
|
comboBox.Items.Clear();
|
|
|
|
|
foreach (var val in Enum.GetValues(enumType))
|
|
|
|
|
{
|
|
|
|
|
comboBox.Items.Add(val);
|
|
|
|
|
}
|
|
|
|
|
comboBox.SelectedIndexChanged += (object sender, EventArgs e) => { CallOnValueChangeEvent(); };
|
|
|
|
|
panelControl.Controls.Add(comboBox);
|
2021-04-08 10:43:44 +04:00
|
|
|
|
|
|
|
|
|
if (!_mustFilling)
|
|
|
|
|
{
|
|
|
|
|
checkBoxNullable.CheckedChanged += (object sender, EventArgs e) =>
|
|
|
|
|
{
|
|
|
|
|
comboBox.Enabled = !(sender as CheckBox).Checked;
|
|
|
|
|
CallOnValueChangeEvent();
|
|
|
|
|
};
|
|
|
|
|
panelControl.Controls.Add(checkBoxNullable);
|
|
|
|
|
}
|
2021-03-30 22:34:31 +04:00
|
|
|
|
}
|
|
|
|
|
|
2021-04-01 21:30:29 +04:00
|
|
|
|
public void SetDefaultValue() => _originalValue = null;
|
2021-03-30 22:34:31 +04:00
|
|
|
|
|
2021-04-01 21:30:29 +04:00
|
|
|
|
public void SetValueToControl(object value)
|
2021-03-30 22:34:31 +04:00
|
|
|
|
{
|
|
|
|
|
if (value != null)
|
|
|
|
|
{
|
|
|
|
|
comboBox.SelectedIndex = comboBox.Items.IndexOf(value);
|
|
|
|
|
}
|
|
|
|
|
else if (!_mustFilling)
|
|
|
|
|
{
|
|
|
|
|
checkBoxNullable.Checked = true;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2021-04-01 21:30:29 +04:00
|
|
|
|
public void DropValueForControl()
|
2021-03-30 22:34:31 +04:00
|
|
|
|
{
|
|
|
|
|
if (_originalValue != null)
|
|
|
|
|
{
|
|
|
|
|
comboBox.SelectedIndex = comboBox.Items.IndexOf(_originalValue);
|
|
|
|
|
}
|
|
|
|
|
else if (!_mustFilling)
|
|
|
|
|
{
|
|
|
|
|
checkBoxNullable.Checked = true;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2021-04-01 21:30:29 +04:00
|
|
|
|
public bool CheckValueForControl()
|
2021-03-30 22:34:31 +04:00
|
|
|
|
{
|
|
|
|
|
if (_mustFilling && comboBox.SelectedIndex == -1)
|
|
|
|
|
{
|
|
|
|
|
BackColor = Color.OrangeRed;
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
2021-04-01 21:30:29 +04:00
|
|
|
|
public object GetValueFromControl()
|
2021-03-30 22:34:31 +04:00
|
|
|
|
{
|
|
|
|
|
if (_mustFilling && comboBox.SelectedIndex == -1)
|
|
|
|
|
{
|
|
|
|
|
throw new ArgumentNullException($"Поле свойства '{labelTitle.Text}' должно быть заполнено");
|
|
|
|
|
}
|
|
|
|
|
return checkBoxNullable.Checked ? null : comboBox.SelectedItem;
|
|
|
|
|
}
|
2021-04-01 21:30:29 +04:00
|
|
|
|
|
|
|
|
|
public string GetPropertyName() => _propertyName;
|
2021-03-30 22:34:31 +04:00
|
|
|
|
}
|
|
|
|
|
}
|