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