0

我有一个树控件,用户可以在其中通过检查来选择节点。我想给用户一个选项来只显示选定的项目。

我正在考虑一个扩展器。当用户展开扩展器时,扩展器会在原始树控件上展开,其中包含仅显示所选项目的另一个内容。

问题是扩展器只能拉伸到其内容的大小。我希望扩展器完全伸展,以便在扩展器折叠之前原始树是不可见的。

代码如下。画布外的树是原始树。画布内的树是扩展器应该显示的只读树

<Grid Grid.Row="1" HorizontalAlignment="Stretch" VerticalAlignment="Stretch">
                <Grid.RowDefinitions>
                    <RowDefinition Height="33" />
                    <RowDefinition Height="*"/>
                </Grid.RowDefinitions>


                <Canvas Canvas.ZIndex="999" Grid.Row="0" HorizontalAlignment="Stretch" >
                    <telerik:RadExpander HorizontalAlignment="Right" ToolTipService.ToolTip="Show Selected Items"
                      ExpandDirection="Down" Expanded="RadExpander_Expanded" HorizontalContentAlignment="Stretch" VerticalContentAlignment="Stretch">
                        <telerik:RadExpander.Header>
                            <TextBlock
      Text="Selected Items"

      Width="{Binding      RelativeSource={RelativeSource AncestorType=telerik:RadExpander}, Path=ActualWidth}"   />
                        </telerik:RadExpander.Header>

                        <telerik:RadTreeView IsExpandOnSingleClickEnabled="True"  IsLoadOnDemandEnabled="False"

                                             Height="{Binding RelativeSource={RelativeSource AncestorType=telerik:RadExpander}, Path=ActualHeight}" 
                           ItemTemplate="{StaticResource SelectedElementDataOnlyTemplate}"  Margin="0,0,0,8"              
                                 ItemsSource="{Binding Path=SelectedElementsOnly}"  x:Name="ElementsTree2" >
                        </telerik:RadTreeView>

                    </telerik:RadExpander>                  

                </Canvas>
                <telerik:RadTreeView  AutomationProperties.AutomationId="ElementPicker" IsExpandOnSingleClickEnabled="True" IsVirtualizing="True"
                             ItemsOptionListType="None" Grid.Row="1" ItemTemplate="{StaticResource ElementDataTemplate}" IsRootLinesEnabled="True" Margin="0,0,0,8"
                             ItemsSource="{Binding Path=Elements}"  IsLoadOnDemandEnabled="True"    Visibility="{Binding ToggleSelectedElements,
                                                                                 Converter={StaticResource BoolToVisibilityConverter}}" LoadOnDemand="tvMain_LoadOnDemand" x:Name="ElementsTree" SelectedItem="{Binding Path=SelectedItem,Mode=TwoWay}">
                </telerik:RadTreeView>
            </Grid>
4

1 回答 1

-2

使用 Canvas 而不是 Grid 可以解决问题。

希望能帮助到你。

于 2013-02-25T17:25:51.513 回答