扩展器溢出

时间:2010-10-12 16:32:17

标签: c# xaml expander

c#vs2010

大家好: 我怎样才能将所有控件隐藏在扩展器上的焦点放在窗口上。

扩展器在窗口底部折叠,  当我点击它来扩展它(我必须向下滚动,'因为控件没有显示在窗口上),我想把第一个控件聚焦,并能够在没有手动滚动的情况下看到窗口上的最后一个控件

如何在Xaml或后面的代码上完成此任务的任何想法。

感谢

1 个答案:

答案 0 :(得分:0)

<Window>
  <Grid>
    <Grid.RowDefinitions>
      <RowDefinition Height="*" />
      <RowDefinition Height="auto" />
    </Grid.RowDefinitions>
    <ScrollViewer>
      <!-- lol stuff here -->
    </ScrollViewer>
    <Expander Grid.Row="1">
      <TextBlock>Wow! You don't have to scroll to see me!</TextBlock>
    </Expander>
  </Grid>
</Window>