TabControl DataTemplate实例创建问题

时间:2012-09-24 09:20:57

标签: wpf datatemplate tabcontrol

我有一个我不明白的WPF问题 - 有人可以帮忙吗?

下面的WPF用作标准TabControl的ContentTemplate,并驻留在ResourceDictionary中。 MyElementItemsControl是ItemsControl的简单衍生物,MyDesignCanvas是Canvas的简单衍生物。

    <DataTemplate x:Key="TabContent"  x:Shared="False">
    <Grid>
        <Grid Grid.RowSpan="2">
            <ScrollViewer x:Name="contentScrollViewer" VerticalScrollBarVisibility="Auto" HorizontalScrollBarVisibility="Auto" >
                <Grid>
                    <View:MyElementItemsControl BorderBrush="Transparent" x:Name="schedulePanel" ItemsSource="{Binding Path=Elements}" Background="White">
                        <View:MyElementItemsControl.ItemsPanel>
                            <ItemsPanelTemplate>
                                <View:MyDesignCanvas Height="1000" Width="1000" HorizontalAlignment="Left" VerticalAlignment="Top" 
                                                                     SelectedItem="{Binding SelectedItem, Mode=TwoWay}"
                                                                     Background="Transparent">
                                </View:MyDesignCanvas>
                            </ItemsPanelTemplate>
                        </View:MyElementItemsControl.ItemsPanel>
                    </View:MyElementItemsControl>

                    <Grid.LayoutTransform>
                        <TransformGroup>
                            <ScaleTransform>
                                <ScaleTransform.ScaleX>
                                    <Binding ElementName="SlideZoom" Path="Value" Mode="OneWay"/>
                                </ScaleTransform.ScaleX>
                                <ScaleTransform.ScaleY>
                                    <Binding ElementName="SlideZoom" Path="Value" Mode="OneWay"/>
                                </ScaleTransform.ScaleY>
                            </ScaleTransform>
                        </TransformGroup>
                    </Grid.LayoutTransform>

                </Grid>
            </ScrollViewer>

        </Grid>

        <Slider Opacity="0.5" VerticalAlignment="Top" HorizontalAlignment="Left" Width="300" Grid.Row="1" Name="SlideZoom" Orientation="Horizontal" Minimum="0.1" Maximum="3" Value="1">
        </Slider>
        <Grid.RowDefinitions>
            <RowDefinition Height="*" />
            <RowDefinition Height="30" />
        </Grid.RowDefinitions>

    </Grid>
</DataTemplate>

当我运行代码时,我遇到了两个我不理解的问题:

  1. 当我期望每个项目使用ScrollViewer时,我似乎只获得了一个ScrollViewer。因此,如果我添加两个选项卡项并使画布大小不同,则滚动条将仅调整为最大画布的大小。我希望Shared = False属性可以为每个选项卡创建模板的新实例。
  2. 可能与第1项有关 - 如果我在MyDesignCanvas的构造函数上粘贴断点,则在添加第一个选项卡时会触发它,但在添加其他选项卡时则不会。只有当我开始关闭标签时,断点才会再次被击中 - 我希望每个标签的添加都会受到影响。
  3. 我想我真的不太了解数据模板,所以任何人都可以解释可能发生的事情,或者指出一些可能有助于我诊断的资源吗?

    由于

1 个答案:

答案 0 :(得分:3)

我已经意识到问题是什么 - WPF TabControl对标签内容进行了内部虚拟化,所以尽管我使用了Shared = False,但它一直在重复使用标签内容并只是更改数据上下文。有关详细信息,请参阅this SO questionthis one too