In WPF Datagrid, i am adding Column dynamically for that i want to set X:Name property of DataGrid column by C#
My Code:
DataGridTextColumn clm = new DataGridTextColumn();
clm.Header = "Marks";
clm.Width = 100;
clm.IsReadOnly = false;
dgChapters.Columns.Add(clm);
How to set X:Name property on DataGridTextColumn by C#