gpt4 book ai didi

c# - 如何设置 X :Name property through C# in wpf datagrid column

转载 作者:行者123 更新时间:2023-11-30 12:10:34 25 4
gpt4 key购买 nike

在 WPF Datagrid 中,我正在动态添加列,因为我想通过 C# 设置 DataGrid 列的 X:Name 属性

我的代码:

DataGridTextColumn clm = new DataGridTextColumn();
clm.Header = "Marks";
clm.Width = 100;
clm.IsReadOnly = false;
dgChapters.Columns.Add(clm);

如何通过 C# 设置 DataGridTextColumn 的 X:Name 属性

最佳答案

//Registe it in a Method of a Window class
this.RegisterName("mark", clm);
//Use it in another Method like this
DataGridTextColumn clm2 = this.FindName("mark") as DataGridTextColumn;

关于c# - 如何设置 X :Name property through C# in wpf datagrid column,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17966904/

25 4 0