DataGrid 添加自增序号

 

前台xaml:

响应LoadingRow事件,绑定了DataGridRow.Header属性,然后为Header属性赋值。RowHeaderWidth = 0是把默认的行表头隐藏掉,用自己绑定的列。


    
        
        
        
        
    

后台代码:

        private void DataGrid_LoadingRow(object sender, DataGridRowEventArgs e)
        {
            e.Row.Header = e.Row.GetIndex() + 1;
        }

 

你可能感兴趣的:(WPF)