UWP SemanticZoom组绑定

时间:2016-02-11 17:09:52

标签: binding win-universal-app

我已经被困了好几天了,因为我找不到将CollectionViewSource绑定到SemanticZoom控件(Windows 10应用程序)的方法。

我做了很多,数据显示在ZoomedIn视图中。 但我只是不知道还有什么可以尝试将组绑定到ZoomedOut视图。它根本不起作用。 我甚至做了一个虚拟转换器来查看哪种数据到达数据模板。但它有点无用,因为它是'DependencyObject',我甚至无法将它投射到我的对象上。

有人可以帮助我吗?

P.S。另外一个信息:我在一个单独的ResourceDictionary中设置我的SemanticZoom控件样式,它看起来像这样:

<GridView.ItemTemplate>
    <DataTemplate>
        <Border Height="48"
                Width="144"
                Background="Green"
                BorderThickness="1">
            <ToolTipService.ToolTip>
                <TextBox Text="{Binding Converter={StaticResource DoNothing}}"
                         TextWrapping="Wrap"/>
            </ToolTipService.ToolTip>
            <TextBlock Text="{Binding Converter={StaticResource DoNothing}}"
                       Foreground="Yellow"
                       HorizontalAlignment="Center"
                       VerticalAlignment="Center" />
        </Border>
    </DataTemplate>
</GridView.ItemTemplate>

1 个答案:

答案 0 :(得分:1)