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

69 lines
1.7 KiB
C#
Raw Normal View History

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