摘要:
在使用WPF进行应用程序的开发时,经常会为DataGrid生成行号,这里主要介绍一下生成行号的方法。通常有三种方法,这里主要介绍其中的两种,另一种简单提一下。1. 直接在LoadingRow事件中操作。这种方式是在code behind文件中操作。即相应的*.xaml.cs文件。代码如下:this.dataGridSoftware.LoadingRow+=newEventHandler<DataGridRowEventArgs>(this.DataGridSoftware_LoadingRow);//...privatevoidDataGridSoftware_LoadingRow 阅读全文