0
我在擴展器中有一個數據網格,gatagrid有超過10列。然後應該滾動擴展器
中的數據網格。但無法滾動查看其他列。我的代碼如下。WPF在擴展器中滾動數據網格
<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>
HorizontalScrollBarVisibility =「Disabled」將其更改爲可見? – mcalex
它沒有工作..我只是看到滾動條壞它被隱藏滾動@mcalex – Isi
@Isi我的解決方案爲你工作嗎? – Sisyphe