C# Class Habanero.Faces.Win.CalendarEditingControl

A control for editing date and time values
Inheritance: System.Windows.Forms.DateTimePicker, IDataGridViewEditingControl
Show file Open project: Chillisoft/habanero.faces Class Usage Examples

Public Methods

Method Description
ApplyCellStyleToEditingControl ( System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle ) : void

Copy the styles from the object provided across to this editing control

CalendarEditingControl ( ) : System

Constructor to initialise a new editing control with the short date format

EditingControlWantsInputKey ( Keys key, bool dataGridViewWantsInputKey ) : bool

Indicates if the editing control wants the input key specified

GetEditingControlFormattedValue ( DataGridViewDataErrorContexts context ) : object

Returns the value being held in the control

PrepareEditingControlForEdit ( bool selectAll ) : void

Prepares the editing control for editing

Protected Methods

Method Description
OnValueChanged ( EventArgs eventargs ) : void

A handler to carry out repercussions of a changed value

Method Details

ApplyCellStyleToEditingControl() public method

Copy the styles from the object provided across to this editing control
public ApplyCellStyleToEditingControl ( System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle ) : void
dataGridViewCellStyle System.Windows.Forms.DataGridViewCellStyle The source to copy from
return void

CalendarEditingControl() public method

Constructor to initialise a new editing control with the short date format
public CalendarEditingControl ( ) : System
return System

EditingControlWantsInputKey() public method

Indicates if the editing control wants the input key specified
public EditingControlWantsInputKey ( Keys key, bool dataGridViewWantsInputKey ) : bool
key Keys The key in question
dataGridViewWantsInputKey bool Whether the DataGridView /// wants the input key
return bool

GetEditingControlFormattedValue() public method

Returns the value being held in the control
public GetEditingControlFormattedValue ( DataGridViewDataErrorContexts context ) : object
context DataGridViewDataErrorContexts
return object

OnValueChanged() protected method

A handler to carry out repercussions of a changed value
protected OnValueChanged ( EventArgs eventargs ) : void
eventargs System.EventArgs Arguments relating to the event
return void

PrepareEditingControlForEdit() public method

Prepares the editing control for editing
public PrepareEditingControlForEdit ( bool selectAll ) : void
selectAll bool Whether to select all the content first, /// which can make it easier to replace as you type
return void