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

85 lines
2.3 KiB
C#
Raw Normal View History

using DesktopTools.Interfaces;
using ModuleTools.Extensions;
2021-03-30 22:34:31 +04:00
using System;
using System.Windows.Forms;
namespace DesktopTools.BaseControls
{
/// <summary>
/// Контрол, предоставляющий работу с датой
/// </summary>
public partial class BaseControlDateTime : 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="minDate"></param>
/// <param name="maxDate"></param>
/// <param name="customDateFormat"></param>
2021-04-03 11:38:27 +04:00
public BaseControlDateTime(string propertyName, bool mustFilling, bool readOnly, DateTime minDate, DateTime maxDate, string customDateFormat) : base(propertyName, mustFilling, readOnly)
2021-03-30 22:34:31 +04:00
{
InitializeComponent();
_baseControl = this;
2021-03-30 22:34:31 +04:00
if (!_mustFilling)
{
checkBoxNullable.CheckedChanged += (object sender, EventArgs e) =>
{
dateTimePicker.Enabled = !(sender as CheckBox).Checked;
CallOnValueChangeEvent();
};
panelControl.Controls.Add(checkBoxNullable);
}
dateTimePicker.ValueChanged += (object sender, EventArgs e) => { CallOnValueChangeEvent(); };
2021-04-03 11:38:27 +04:00
if (minDate > DateTime.MinValue)
2021-03-30 22:34:31 +04:00
{
2021-04-03 11:38:27 +04:00
dateTimePicker.MinDate = minDate;
2021-03-30 22:34:31 +04:00
}
2021-04-03 11:38:27 +04:00
if (maxDate > DateTime.MinValue)
2021-03-30 22:34:31 +04:00
{
2021-04-03 11:38:27 +04:00
dateTimePicker.MaxDate = maxDate;
2021-03-30 22:34:31 +04:00
}
if(customDateFormat.IsNotEmpty())
{
dateTimePicker.CustomFormat = customDateFormat;
}
panelControl.Controls.Add(dateTimePicker);
}
public void SetDefaultValue() => _originalValue = _mustFilling ? DateTime.Now : null;
2021-03-30 22:34:31 +04:00
public void SetValueToControl(object value)
2021-03-30 22:34:31 +04:00
{
if (value != null)
{
dateTimePicker.Value = Convert.ToDateTime(value);
}
else if (!_mustFilling)
{
checkBoxNullable.Checked = true;
}
}
public void DropValueForControl()
2021-03-30 22:34:31 +04:00
{
if (_originalValue != null)
{
dateTimePicker.Value = Convert.ToDateTime(_originalValue);
}
else if (!_mustFilling)
{
checkBoxNullable.Checked = true;
}
}
public bool CheckValueForControl() => true;
2021-03-30 22:34:31 +04:00
public object GetValueFromControl() => !_mustFilling && checkBoxNullable.Checked ? null : Convert.ToDateTime(dateTimePicker.Value);
public string GetPropertyName() => _propertyName;
2021-03-30 22:34:31 +04:00
}
}