CEL_Payroll/Payroll.Controls/DataGridViewDateTimePickerColumn.cs

240 lines
6.8 KiB
C#
Raw Normal View History

2024-09-17 14:30:13 +06:00
using System;
using System.Collections.Generic;
using System.Text;
using System.Windows.Forms;
namespace BEACON.PPIC.UserControls
{
#region DateTimePickerColumn
public class DateTimePickerColumn : DataGridViewColumn
{
public DateTimePickerColumn() : base(new DateTimePickerCell())
{
}
public override DataGridViewCell CellTemplate
{
get
{
return base.CellTemplate;
}
set
{
// Ensure that the cell used for the template is a DateTimePickerCell.
if (value != null &&
!value.GetType().IsAssignableFrom(typeof(DateTimePickerCell)))
{
throw new InvalidCastException("Must be a DateTimePickerCell");
}
base.CellTemplate = value;
}
}
}
#endregion
#region DateTimePickerCell
public class DateTimePickerCell : DataGridViewTextBoxCell
{
public DateTimePickerCell()
: base()
{
// Use the short date format.
this.Style.Format = "HH:mm";
}
public override void InitializeEditingControl(int rowIndex, object
initialFormattedValue, DataGridViewCellStyle dataGridViewCellStyle)
{
// Set the value of the editing control to the current cell value.
base.InitializeEditingControl(rowIndex, initialFormattedValue,
dataGridViewCellStyle);
DataGridViewDateTimePickerColumn ctl =
DataGridView.EditingControl as DataGridViewDateTimePickerColumn;
if (this.Value!=null && this.Value.ToString() != "1/1/0001 12:00:00 AM")
ctl.Value = Convert.ToDateTime(this.Value);
}
public override Type EditType
{
get
{
// Return the type of the editing contol that DateTimePickerCell uses.
return typeof(DataGridViewDateTimePickerColumn);
}
}
public override Type ValueType
{
get
{
// Return the type of the value that DateTimePickerCell contains.
return typeof(DateTime);
}
}
public override object DefaultNewRowValue
{
get
{
// Use the current date and time as the default value.
return DateTime.Now;
}
}
}
#endregion
#region DataGridViewDateTimePickerColumn
class DataGridViewDateTimePickerColumn : DateTimePicker, IDataGridViewEditingControl
{
DataGridView dataGridView;
private bool valueChanged = false;
int rowIndex;
public DataGridViewDateTimePickerColumn()
{
this.CustomFormat = "HH:mm";
this.Format=DateTimePickerFormat.Custom;
this.ShowUpDown = true;
}
// Implements the IDataGridViewEditingControl.EditingControlFormattedValue
// property.
public object EditingControlFormattedValue
{
get
{
return (this.Value.ToString());
}
set
{
if (value is String)
{
this.Value = DateTime.Parse((String)value);
}
}
}
// Implements the
// IDataGridViewEditingControl.GetEditingControlFormattedValue method.
public object GetEditingControlFormattedValue(
DataGridViewDataErrorContexts context)
{
return EditingControlFormattedValue;
}
// Implements the
// IDataGridViewEditingControl.ApplyCellStyleToEditingControl method.
public void ApplyCellStyleToEditingControl(
DataGridViewCellStyle dataGridViewCellStyle)
{
this.Font = dataGridViewCellStyle.Font;
this.CalendarForeColor = dataGridViewCellStyle.ForeColor;
this.CalendarMonthBackground = dataGridViewCellStyle.BackColor;
}
// Implements the IDataGridViewEditingControl.EditingControlRowIndex
// property.
public int EditingControlRowIndex
{
get
{
return rowIndex;
}
set
{
rowIndex = value;
}
}
// Implements the IDataGridViewEditingControl.EditingControlWantsInputKey
// method.
public bool EditingControlWantsInputKey(
Keys key, bool dataGridViewWantsInputKey)
{
// Let the DateTimePicker handle the keys listed.
switch (key & Keys.KeyCode)
{
case Keys.Left:
case Keys.Up:
case Keys.Down:
case Keys.Right:
case Keys.Home:
case Keys.End:
case Keys.PageDown:
case Keys.PageUp:
return true;
default:
return false;
}
}
// Implements the IDataGridViewEditingControl.PrepareEditingControlForEdit
// method.
public void PrepareEditingControlForEdit(bool selectAll)
{
// No preparation needs to be done.
}
// Implements the IDataGridViewEditingControl
// .RepositionEditingControlOnValueChange property.
public bool RepositionEditingControlOnValueChange
{
get
{
return false;
}
}
// Implements the IDataGridViewEditingControl
// .EditingControlDataGridView property.
public DataGridView EditingControlDataGridView
{
get
{
return dataGridView;
}
set
{
dataGridView = value;
}
}
// Implements the IDataGridViewEditingControl
// .EditingControlValueChanged property.
public bool EditingControlValueChanged
{
get
{
return valueChanged;
}
set
{
valueChanged = value;
}
}
// Implements the IDataGridViewEditingControl
// .EditingPanelCursor property.
public Cursor EditingPanelCursor
{
get
{
return base.Cursor;
}
}
protected override void OnValueChanged(EventArgs eventargs)
{
// Notify the DataGridView that the contents of the cell
// have changed.
valueChanged = true;
this.EditingControlDataGridView.NotifyCurrentCellDirty(true);
base.OnValueChanged(eventargs);
}
}
#endregion
}