我有一個網格:WPF:ScrollViewer中網格
<Grid.RowDefinitions>
<RowDefinition Height="100"/>
<RowDefinition Height="*"/>
</Grid.RowDefinitions>
第二行是與ScrollViewer中:
<ScrollViewer VerticalScrollBarVisibility="Auto" MinHeight="400" Grid.Row="1">
<ItemsControl ItemsSource="{Binding SelectedUserControls}"/>
</ScrollViewer>
我想如果需要的話, 第二行是與滾動但滾動永遠不可見,如果項目控件大於屏幕,則爲事件。
我怎樣才能在需要的時候出現在滾動?
什麼是包裹你的網格? – ChrisF 2011-03-09 17:00:03