2021-04-01 21:30:29 +04:00
|
|
|
|
using DesktopTools.Interfaces;
|
|
|
|
|
using System;
|
2021-03-30 22:34:31 +04:00
|
|
|
|
using System.Windows.Forms;
|
|
|
|
|
|
|
|
|
|
namespace DesktopTools.BaseControls
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Контрол, предоставляющий работу с вещественным полем
|
|
|
|
|
/// </summary>
|
2021-04-01 21:30:29 +04:00
|
|
|
|
public partial class BaseControlDecimal : 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="minValue"></param>
|
|
|
|
|
/// <param name="maxValue"></param>
|
|
|
|
|
/// <param name="decimalPlaces"></param>
|
|
|
|
|
public BaseControlDecimal(string propertyName, bool mustFilling, bool readOnly, decimal? minValue, decimal? maxValue, int? decimalPlaces) : base(propertyName, mustFilling, readOnly)
|
|
|
|
|
{
|
|
|
|
|
InitializeComponent();
|
2021-04-01 21:30:29 +04:00
|
|
|
|
_baseControl = this;
|
2021-03-30 22:34:31 +04:00
|
|
|
|
|
|
|
|
|
if (!_mustFilling)
|
|
|
|
|
{
|
|
|
|
|
checkBoxNullable.CheckedChanged += (object sender, EventArgs e) =>
|
|
|
|
|
{
|
|
|
|
|
numericUpDown.Enabled = !(sender as CheckBox).Checked;
|
|
|
|
|
CallOnValueChangeEvent();
|
|
|
|
|
};
|
|
|
|
|
panelControl.Controls.Add(checkBoxNullable);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
numericUpDown.ValueChanged += (object sender, EventArgs e) => { CallOnValueChangeEvent(); };
|
|
|
|
|
if (minValue.HasValue)
|
|
|
|
|
{
|
|
|
|
|
numericUpDown.Minimum = minValue.Value;
|
|
|
|
|
}
|
|
|
|
|
if (maxValue.HasValue)
|
|
|
|
|
{
|
|
|
|
|
numericUpDown.Maximum = maxValue.Value;
|
|
|
|
|
}
|
|
|
|
|
if (decimalPlaces.HasValue)
|
|
|
|
|
{
|
|
|
|
|
numericUpDown.DecimalPlaces = decimalPlaces.Value;
|
|
|
|
|
}
|
|
|
|
|
panelControl.Controls.Add(numericUpDown);
|
|
|
|
|
}
|
|
|
|
|
|
2021-04-01 21:30:29 +04:00
|
|
|
|
public void SetDefaultValue() => _originalValue = _mustFilling ? 0 : 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)
|
|
|
|
|
{
|
|
|
|
|
numericUpDown.Value = Convert.ToDecimal(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)
|
|
|
|
|
{
|
|
|
|
|
numericUpDown.Value = Convert.ToDecimal(_originalValue);
|
|
|
|
|
}
|
|
|
|
|
else if (!_mustFilling)
|
|
|
|
|
{
|
|
|
|
|
checkBoxNullable.Checked = true;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2021-04-01 21:30:29 +04:00
|
|
|
|
public bool CheckValueForControl() => true;
|
2021-03-30 22:34:31 +04:00
|
|
|
|
|
2021-04-03 11:29:04 +04:00
|
|
|
|
public object GetValueFromControl() => !_mustFilling && checkBoxNullable.Checked ? null : Convert.ToDecimal(numericUpDown.Value);
|
2021-04-01 21:30:29 +04:00
|
|
|
|
|
|
|
|
|
public string GetPropertyName() => _propertyName;
|
2021-03-30 22:34:31 +04:00
|
|
|
|
}
|
|
|
|
|
}
|