我在扩展器中有一个数据网格,而 gatagrid 有 10 多列。然后
应该滚动扩展器中的数据网格。但它不能滚动查看其他列。我的代码如下。
<Expander Header="Attribute" VerticalAlignment="Top" Grid.Row="1" >
<ScrollViewer HorizontalScrollBarVisibility="Disabled" VerticalScrollBarVisibility="Visible" CanContentScroll="True" Grid.Row="1" >
<DataGrid DataContext="{Binding}" Height="257" ItemsSource="{Binding}" MinHeight="200" Name="gridview1" Grid.Row="2" Grid.Column="0"
VerticalAlignment="Bottom" IsReadOnly="True"></DataGrid>
</ScrollViewer>
</Expander>