I have WPF-MVVM DataGrid.我想使用行标题,但它是不可见的。我尝试使用RowHeaderWidth设置它,但它没有任何效果。下面是我的代码:
<Grid DataContext="{Binding Tours}">
<DataGrid Grid.Row="0"
x:Name="tourDataGrid"
RowHeaderWidth="27"
ItemsSource="{Binding}"
AutoGenerateColumns="False"
Height="360">
怎么了?
提前非常感谢...
试试这个:
<Grid DataContext="{Binding Tours}">
<DataGrid Grid.Row="0"
x:Name="tourDataGrid"
HeadersVisibility="All"
RowHeaderWidth="27"
ItemsSource="{Binding}"
AutoGenerateColumns="False"
Height="360">