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
45
XamComboEditor as a column in XamDataGrid
posted

I am developing an application which requires to populate xamdatagrid dynamically. My concern is to generate the columns dynamically and then adding the rows.

I am having a boolean list "List<bool> IsCombo" of length same as number of columns and true indicates that particular indexed column is combofield and false indicates normal text field. "List<string> Headers" indicating the header of which indicates the headers of the columns and also "List < List<string> > data" which is of length x where x is number of true in IsCombo list, and it indicates the items to bound with specific comboeditor.

I want to do this in C# as it is generated dynamically multiple times.

Please help me do this.

Thanking you in anticipation.