0

Silverlight アプリケーションには、2 つの HierarchicalDataTemplate(s) を使用して必要な形式でデータを表示するツリービュー コントロールがあります。初めて開いたときにこのツリーを自動展開したいと思います(できれば、いつでも呼び出すことができるコードスニペット)。

指定されたコードに代わるものも大歓迎です。

<sdk:TreeView x:Name="tvPageManager" Style="{StaticResource PageManagerStyle}"                                       
                        ScrollViewer.HorizontalScrollBarVisibility="Hidden" ScrollViewer.VerticalScrollBarVisibility="Auto">
                        <sdk:TreeView.ItemTemplate>
                            <sdk:HierarchicalDataTemplate ItemsSource="{Binding KeyPoints, Mode=TwoWay}">
                                <StackPanel Orientation="Horizontal">
                                    <ToolTipService.ToolTip>
                                        <ToolTip Content="{Binding PageName}" Style="{StaticResource ToolTipStyle}"/>
                                    </ToolTipService.ToolTip>
                                    <Image x:Name="imgPageIcon" Source="{Binding PageIconImage}" Style="{StaticResource PageIconStyle}" Tag="{Binding BurstPageId, Mode=TwoWay}" />
                                    <TextBlock x:Name="tbkLiteralTextPage" Text="Page " Style="{StaticResource PageNameLiteralTextBlockStyle}" />
                                    <TextBox x:Name="tbPageName" Text="{Binding PageName, Mode=TwoWay}" Style="{StaticResource PageNameTextBoxStyle}" />
                                </StackPanel>
                                <sdk:HierarchicalDataTemplate.ItemTemplate>
                                    <DataTemplate>
                                        <StackPanel Orientation="Horizontal">
                                            <Image x:Name="imgKeypointIcon" Source="../Assets/Images/bullet_yellow.png" Style="{StaticResource KeypointIconStyle}"/>
                                            <TextBlock x:Name="tbkKeypointTitle" Text="{Binding Title, Mode=TwoWay}" Style="{StaticResource KeypointNameTextBlockStyle}"  />
                                            <StackPanel x:Name="spnlMoveImages" Orientation="Horizontal" HorizontalAlignment="Right" Width="30">
                                                <Image x:Name="imgMoveUp" Source="../Assets/Images/up_arrow.png" Style="{StaticResource MoveIconsStyle}" Tag="{Binding KeyPointId}"/>
                                                <Image x:Name="imgMoveDn" Source="../Assets/Images/down_arrow.png" Style="{StaticResource MoveIconsStyle}" Tag="{Binding KeyPointId}"/>
                                            </StackPanel>
                                        </StackPanel>
                                    </DataTemplate>
                                </sdk:HierarchicalDataTemplate.ItemTemplate>
                            </sdk:HierarchicalDataTemplate>
                        </sdk:TreeView.ItemTemplate>
                    </sdk:TreeView>

このコントロールは、BurstPage クラスの Observable リストにバインドされています。完全なデータ構造は次のとおりです。

親要素は、1 ~ n 個の BurstPage オブジェクトを含む Burst オブジェクトです。特定の BurstPage には、1 ~ n 個の Keypoint オブジェクトが含まれる場合があります。

BurstPage.Name (たとえば 1) Keypoint.Name (たとえば A) Keypoint.Name (たとえば B) Keypoint.Name (たとえば C) BurstPage.Name (たとえば 2) BurstPage.Name (たとえば 3) Keypoint.Name (たとえば D) Keypoint .名前 (E と言う)

4

2 に答える 2

0

そうです、XAMLは最初にツリーを拡張するだけで、使用する新しいノードを追加します。

private void ExpandNode()
{
    if (branchSelector < 1)
        return;

    TreeViewItem item = null;
    int itemAtIndex = 0;

    //Update tree layout
    this.tvName.UpdateLayout();

    foreach (var branch in this.tvName.Items)
    {
        item = (this.tvName.GetContainerFromItem(this.tvName.Items[itemAtIndex]) as TreeViewItem);
        if (item != null && item.HasItems)
        {
            if ((branch as Model.BranchBusinessObject).Id== branchSelector && (!item.IsExpanded))
                item.IsExpanded = true;
        }
        itemAtIndex++;
    }
}
于 2011-07-07T06:18:42.260 に答える
0

あなたの投稿には多くのコードが欠けているように感じます...

しかし、次のものが役立つと思うかもしれません: one-more-platform-difference-more-or-less-tamed

ツリービューなどのコントロールをバインドし、それらをコードで操作する方法について、いくつかの良い指針があります。

于 2011-07-06T11:48:30.710 に答える