在 . 中生成所有列之后,我想做一些事情,WPFDataGrid
我需要DisplayIndex
那里,所以我使用了EndInit
of DataGrid
,但似乎DisplayIndex
尚未设置该值。
public class AdvancedDatagridControl:DataGrid
{
.
.
.
public override void EndInit()
{
foreach (var column in this.Columns)
{
var colIndex=column.DisplayIndex; //DisplayIndex is -1
}
}
}
我可以使用什么活动?