
I am using winform C#.
In that how can i add the datepicker column in gridview in design method. I can see button, checkbox, link columns. but datetime picker is missing.
And any way to add datetime picker without code. If possible please tell me….
Please help me,..
There’s no built-in option to host a date/time picker control.
However, the
DataGridViewcontrol is very customizable and supports hosting custom controls. All you have to do is extend theDataGridViewColumnclass to create a custom column, and create a custom cell by extending theDataGridViewCellclass.This how-to article provides a walk-through of the process.