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

84 lines
2.2 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>
/// Контрол, предоставляющий работу с вещественным полем
/// </summary>
public partial class BaseControlDecimal : AbstractBaseControl, IBaseControl
{
/// <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();
_baseControl = this;
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 != 0)
{
numericUpDown.Minimum = minValue;
}
if (maxValue != 0)
{
numericUpDown.Maximum = maxValue;
}
if (decimalPlaces != 0)
{
numericUpDown.DecimalPlaces = decimalPlaces;
}
panelControl.Controls.Add(numericUpDown);
}
public void SetDefaultValue() => _originalValue = _mustFilling ? 0 : null;
public void SetValueToControl(object value)
{
if (value != null)
{
numericUpDown.Value = Convert.ToDecimal(value);
}
else if (!_mustFilling)
{
checkBoxNullable.Checked = true;
}
}
public void DropValueForControl()
{
if (_originalValue != null)
{
numericUpDown.Value = Convert.ToDecimal(_originalValue);
}
else if (!_mustFilling)
{
checkBoxNullable.Checked = true;
}
}
public bool CheckValueForControl() => true;
public object GetValueFromControl() => !_mustFilling && checkBoxNullable.Checked ? null : Convert.ToDecimal(numericUpDown.Value);
public string GetPropertyName() => _propertyName;
}
}