Click here to Skip to main content
15,868,141 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi,
how to add textbox column, calender column and combobox column dynamically in C# code for listview/datagri.

please help me.

Thanks
Vinaya
Posted

1 solution

Create column objects, set their properties appropriately, and add the columns to the grid's columns collection. Just regular C#....

Example:

C#
DataGridTextColumn textcol = new DataGridTextColumn(); 
textcol.Header = "Column Header"; 
textcol.Binding = new Binding("MyColumnProperty"); 
dataGrid.Columns.Add(textcol); 
 
Share this answer
 
v2

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900