DepartmentProject/DepartmentPortal/Common/DesktopTools/BaseControls/BaseControlBool.cs
kotcheshir73 e8836c8806 куча наработко по выводу элемента и списка
правки по сущностям безоапсности
2021-04-01 21:30:29 +04:00

69 lines
1.7 KiB
C#
Raw 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 DesktopTools.Interfaces;
using System;
using System.Windows.Forms;
namespace DesktopTools.BaseControls
{
/// <summary>
/// Контрол, предоставляющий работу с bool-полем
/// </summary>
public partial class BaseControlBool : AbstractBaseControl, IBaseControl
{
/// <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;
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;
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;
}
}