选项卡控件中滚动查看器的奇怪行为

Strange behaviour of scrollviewer in tabcontrol

我有以下代码:

<Window x:Class="WpfApplication5.MainWindow"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
    xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
    xmlns:local="clr-namespace:WpfApplication5"
    mc:Ignorable="d"
    Title="MainWindow" Height="350" Width="525">
<Grid>
    <TabControl>
        <TabControl.Items>
            <TabItem>
                <TabItem.Header>tabItem1</TabItem.Header>
                <TabItem.Content>
                    <ScrollViewer HorizontalScrollBarVisibility="Disabled">
                        <WrapPanel>
                            <Image Source="RentgenogramOfWrist.jpg" Width="500"></Image>
                            <Button Width="300" Height="300"/>
                        </WrapPanel>
                    </ScrollViewer>
                </TabItem.Content>
            </TabItem>
            <TabItem>
                <TabItem.Header>tabItem2</TabItem.Header>
                <TabItem.Content>
                    <ScrollViewer HorizontalScrollBarVisibility="Disabled">
                        <WrapPanel>
                            <Image Source="RentgenogramOfWrist.jpg" Width="500"></Image>
                            <Button Width="300" Height="300"/>
                        </WrapPanel>
                    </ScrollViewer>
                </TabItem.Content>
            </TabItem>
        </TabControl.Items>
    </TabControl>
</Grid>

问题是,当程序是 运行 并且我切换到第二个 tabItem 时,scrollViewer 将滚动到按钮的开头。当我现在从第二个 tabItem 切换到第一个时,同样的事情发生了。

ButtonFocusable 属性 是 true by default,因此 ScrollViewer 滚动以聚焦按钮。

设置

<Button Width="300" Height="300" Focusable="False"/>

其中之一,看看有什么变化。