我有一个 WPF MVVM 应用程序,其中 ScrollViewer 包含一个带有多个扩展器的用户控件
<UserControl>
<Expander>
<Grid>
<Grid.RowDefinitions>
<RowDefinition />
<RowDefinition />
...
</Grid.RowDefinitions>
<Expander Grid.Row="0" />
<Expander Grid.Row="1" />
...
</Grid>
</Expander>
</UserControl>
我怎样才能使扩展扩展器滚动到视图中,使其内容可见?