Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
790
Date Column
posted

Hello,

I am adding columns to XamGrid in code using PropertyDescriptorCollection.

One of the properties is DateTime . I add DateColumn to the XamGrid 

if (((PropertyDescriptor)v).PropertyType == typeof(DateTime))
                        {
                            column = new DateColumn();
                        }
But the value is shown only as Date without the time,
How can i show both date and time (with DateTime Picker) ? I need to do this in code (not in XAML)