2021-03-29 23:16:11 +04:00
|
|
|
|
using System;
|
|
|
|
|
using System.Windows.Forms;
|
|
|
|
|
|
|
|
|
|
namespace DesktopTools.BaseControls
|
|
|
|
|
{
|
2021-03-30 22:34:31 +04:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Контрол, предоставляющий работу с целочисленным полем
|
|
|
|
|
/// </summary>
|
2021-03-29 23:16:11 +04:00
|
|
|
|
public partial class BaseControlInt : AbstractBaseControl
|
|
|
|
|
{
|
2021-03-30 22:34:31 +04:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Конструктор
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="propertyName"></param>
|
|
|
|
|
/// <param name="mustFilling"></param>
|
|
|
|
|
/// <param name="readOnly"></param>
|
|
|
|
|
/// <param name="minValue"></param>
|
|
|
|
|
/// <param name="maxValue"></param>
|
|
|
|
|
public BaseControlInt(string propertyName, bool mustFilling, bool readOnly, decimal? minValue, decimal? maxValue) : base(propertyName, mustFilling, readOnly)
|
2021-03-29 23:16:11 +04:00
|
|
|
|
{
|
|
|
|
|
InitializeComponent();
|
2021-03-30 22:34:31 +04:00
|
|
|
|
|
|
|
|
|
if (!_mustFilling)
|
2021-03-29 23:16:11 +04:00
|
|
|
|
{
|
2021-03-30 22:34:31 +04:00
|
|
|
|
checkBoxNullable.CheckedChanged += (object sender, EventArgs e) =>
|
|
|
|
|
{
|
|
|
|
|
numericUpDown.Enabled = !(sender as CheckBox).Checked;
|
|
|
|
|
CallOnValueChangeEvent();
|
|
|
|
|
};
|
|
|
|
|
panelControl.Controls.Add(checkBoxNullable);
|
|
|
|
|
}
|
2021-03-29 23:16:11 +04:00
|
|
|
|
|
|
|
|
|
numericUpDown.ValueChanged += (object sender, EventArgs e) => { CallOnValueChangeEvent(); };
|
2021-03-30 22:34:31 +04:00
|
|
|
|
if (minValue.HasValue)
|
|
|
|
|
{
|
|
|
|
|
numericUpDown.Minimum = minValue.Value;
|
|
|
|
|
}
|
|
|
|
|
if (maxValue.HasValue)
|
|
|
|
|
{
|
|
|
|
|
numericUpDown.Maximum = maxValue.Value;
|
|
|
|
|
}
|
|
|
|
|
panelControl.Controls.Add(numericUpDown);
|
2021-03-29 23:16:11 +04:00
|
|
|
|
}
|
|
|
|
|
|
2021-03-30 22:34:31 +04:00
|
|
|
|
protected override void SetDefaultValue() => _originalValue = _mustFilling ? 0 : null;
|
2021-03-29 23:16:11 +04:00
|
|
|
|
|
2021-03-30 22:34:31 +04:00
|
|
|
|
protected override void SetValueToControl(object value)
|
2021-03-29 23:16:11 +04:00
|
|
|
|
{
|
|
|
|
|
if (value != null)
|
|
|
|
|
{
|
|
|
|
|
numericUpDown.Value = Convert.ToInt32(value);
|
|
|
|
|
}
|
2021-03-30 22:34:31 +04:00
|
|
|
|
else if (!_mustFilling)
|
|
|
|
|
{
|
|
|
|
|
checkBoxNullable.Checked = true;
|
|
|
|
|
}
|
2021-03-29 23:16:11 +04:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public override void DropValue()
|
|
|
|
|
{
|
2021-03-30 22:34:31 +04:00
|
|
|
|
if (_originalValue != null)
|
2021-03-29 23:16:11 +04:00
|
|
|
|
{
|
2021-03-30 22:34:31 +04:00
|
|
|
|
numericUpDown.Value = Convert.ToInt32(_originalValue);
|
2021-03-29 23:16:11 +04:00
|
|
|
|
}
|
2021-03-30 22:34:31 +04:00
|
|
|
|
else if (!_mustFilling)
|
2021-03-29 23:16:11 +04:00
|
|
|
|
{
|
2021-03-30 22:34:31 +04:00
|
|
|
|
checkBoxNullable.Checked = true;
|
2021-03-29 23:16:11 +04:00
|
|
|
|
}
|
|
|
|
|
}
|
2021-03-30 22:34:31 +04:00
|
|
|
|
|
|
|
|
|
public override bool CheckValue() => true;
|
|
|
|
|
|
|
|
|
|
protected override object GetValueFromControl() => !_mustFilling && checkBoxNullable.Checked ? null : Convert.ToInt32(numericUpDown.Value);
|
2021-03-29 23:16:11 +04:00
|
|
|
|
}
|
|
|
|
|
}
|