DepartmentProject/DepartmentPortal/Common/ToolsDesktop/BaseControls/BaseControlInt.cs

79 lines
2.1 KiB
C#
Raw Normal View History

2022-03-18 22:48:14 +04:00
using ToolsDesktop.Interfaces;
using System;
using System.Windows.Forms;
2022-03-18 22:48:14 +04:00
namespace ToolsDesktop.BaseControls
{
2021-03-30 22:34:31 +04:00
/// <summary>
/// Контрол, предоставляющий работу с целочисленным полем
/// </summary>
public partial class BaseControlInt : 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>
2021-04-12 10:01:42 +04:00
public BaseControlInt(string propertyName, bool mustFilling, bool readOnly, double minValue, double maxValue) : base(propertyName, mustFilling, readOnly)
{
InitializeComponent();
_baseControl = this;
2021-03-30 22:34:31 +04:00
numericUpDown.ValueChanged += (object sender, EventArgs e) => { CallOnValueChangeEvent(); };
2021-04-03 11:38:27 +04:00
if (minValue != 0)
2021-03-30 22:34:31 +04:00
{
2021-04-12 10:01:42 +04:00
numericUpDown.Minimum = (decimal)minValue;
2021-03-30 22:34:31 +04:00
}
2021-04-03 11:38:27 +04:00
if (maxValue != 0)
2021-03-30 22:34:31 +04:00
{
2021-04-12 10:01:42 +04:00
numericUpDown.Maximum = (decimal)maxValue;
2021-03-30 22:34:31 +04:00
}
panelControl.Controls.Add(numericUpDown);
if (!_mustFilling)
{
checkBoxNullable.CheckedChanged += (object sender, EventArgs e) =>
{
numericUpDown.Enabled = !(sender as CheckBox).Checked;
CallOnValueChangeEvent();
};
panelControl.Controls.Add(checkBoxNullable);
}
}
public void SetDefaultValue() => _originalValue = _mustFilling ? 0 : null;
public void SetValueToControl(object value)
{
if (value != null)
{
numericUpDown.Value = Convert.ToInt32(value);
}
2021-03-30 22:34:31 +04:00
else if (!_mustFilling)
{
checkBoxNullable.Checked = true;
}
}
public void DropValueForControl()
{
2021-03-30 22:34:31 +04:00
if (_originalValue != null)
{
2021-03-30 22:34:31 +04:00
numericUpDown.Value = Convert.ToInt32(_originalValue);
}
2021-03-30 22:34:31 +04:00
else if (!_mustFilling)
{
2021-03-30 22:34:31 +04:00
checkBoxNullable.Checked = true;
}
}
2021-03-30 22:34:31 +04:00
public bool CheckValueForControl() => true;
2021-03-30 22:34:31 +04:00
public object GetValueFromControl() => !_mustFilling && checkBoxNullable.Checked ? null : Convert.ToInt32(numericUpDown.Value);
public string GetPropertyName() => _propertyName;
}
}