滚动到WPF ScrollViewer中的给定控件

时间:2015-04-07 14:13:12

标签: c# wpf

我有一个包含许多用户控件的scrollviewer。当我的代码中出现一些内部事件时,我想将用户的注意力集中在给定的控件上。

有没有人知道在scrollviewer中滚动到给定控件的解决方案?

在下面的示例中,我想向下滚动到控件" Produit"代码隐藏。

<ScrollViewer  VerticalScrollBarVisibility="Visible" HorizontalScrollBarVisibility="Disabled">
<StackPanel Orientation="Vertical">
<view:MyCustomTextBoxCtrl Title="NUMERO"/>
<view:MyCustomTextBoxCtrl Title="DATE" />
<view:MyCustomComboBox Title="OBJET" />
<view:MyCustomComboBox Title="AUTEUR" />
<view:MyCustomComboBox Title="TYPE" />
<view:MyCustomComboBox Title="PRODUIT" />
<view:MyCustomComboBox Title="THEME" />
...
</StackPanel>
</ScrollViewer>

THX

0 个答案:

没有答案