using ToolsDesktop.Interfaces; using System; using System.Windows.Forms; namespace ToolsDesktop.BaseControls { /// /// Контрол, предоставляющий работу с bool-полем /// public partial class BaseControlBool : AbstractBaseControl, IBaseControl { /// /// Конструктор /// /// /// /// public BaseControlBool(string propertyName, bool mustFilling, bool readOnly) : base(propertyName, mustFilling, readOnly) { InitializeComponent(); _baseControl = this; checkBox.CheckedChanged += (object sender, EventArgs e) => { CallOnValueChangeEvent(); }; panelControl.Controls.Add(checkBox); if (!_mustFilling) { checkBoxNullable.CheckedChanged += (object sender, EventArgs e) => { checkBox.Enabled = !(sender as CheckBox).Checked; CallOnValueChangeEvent(); }; panelControl.Controls.Add(checkBoxNullable); } } public void SetDefaultValue() => _originalValue = _mustFilling ? false : null; public void SetValueToControl(object value) { if (value != null) { checkBox.Checked = Convert.ToBoolean(value); } else if (!_mustFilling) { checkBoxNullable.Checked = true; } } public void DropValueForControl() { if (_originalValue != null) { checkBox.Checked = Convert.ToBoolean(_originalValue); } else if (!_mustFilling) { checkBoxNullable.Checked = true; } } public bool CheckValueForControl() => true; public object GetValueFromControl() => !_mustFilling && checkBoxNullable.Checked ? null : checkBox.Checked; public string GetPropertyName() => _propertyName; } }