我的Treeview基本上具有「文件夾」節點,並且在不包含其他項目的項目下面有一個級別。WPF樹視圖,如何更改縮進
因此,不需要展開/摺疊圖標的空間(在第2級上)。我可以放棄這個圖標空間,從而減少縮進。項目(在「機場」例子中)應該向左移動一些像素。
重要:基本上尋找代碼解決方案(C#),而不是XAML的版本。
我的Treeview基本上具有「文件夾」節點,並且在不包含其他項目的項目下面有一個級別。WPF樹視圖,如何更改縮進
因此,不需要展開/摺疊圖標的空間(在第2級上)。我可以放棄這個圖標空間,從而減少縮進。項目(在「機場」例子中)應該向左移動一些像素。
重要:基本上尋找代碼解決方案(C#),而不是XAML的版本。
真的你想要做的是編輯HierarchicalDataTemplate並改變它的行爲方式。下一頁,編輯Hierarchical Data Template具有相當不錯的高級視圖。
我也發現this one是非常好的開始。雖然這兩個頁面都沒有具體說明要做什麼,但實際上您正在更改項目演示者中的佈局屬性。
哎呀,我錯了。不是HierarchicalDataTemplate,而是TreeViewItem模板。
查看下面的示例。如果您知道不會有任何第三級節點,這只是最簡單的方法。
請特別注意名爲ItemsHost的ItemsPresenter元素。它有一個-12,0,0,0的餘量。這意味着它的左邊距是負值,因此會溢出包含左邊方向的網格列。因此所有的子節點都會被拉到左邊。如果將來有三級節點,它們也會被拉到左邊。如果你不想這樣做,那麼你將不得不爲不同級別的節點提供不同的模板。但這超出了這個答案的範圍。
<Style x:Key="TreeViewItemStyle1" TargetType="{x:Type TreeViewItem}">
<Setter Property="Template">
<Setter.Value>
<ControlTemplate TargetType="{x:Type TreeViewItem}">
<Grid>
<Grid.ColumnDefinitions>
<ColumnDefinition MinWidth="19" Width="Auto"/>
<ColumnDefinition Width="Auto"/>
<ColumnDefinition Width="*"/>
</Grid.ColumnDefinitions>
<Grid.RowDefinitions>
<RowDefinition Height="Auto"/>
<RowDefinition/>
</Grid.RowDefinitions>
<ToggleButton x:Name="Expander" ClickMode="Press" IsChecked="{Binding IsExpanded, RelativeSource={RelativeSource TemplatedParent}}" Style="{StaticResource ExpandCollapseToggleStyle}"/>
<Border x:Name="Bd" BorderBrush="{TemplateBinding BorderBrush}" BorderThickness="{TemplateBinding BorderThickness}" Background="{TemplateBinding Background}" Grid.Column="1" Padding="{TemplateBinding Padding}" SnapsToDevicePixels="true">
<ContentPresenter x:Name="PART_Header" ContentSource="Header" HorizontalAlignment="{TemplateBinding HorizontalContentAlignment}" SnapsToDevicePixels="{TemplateBinding SnapsToDevicePixels}"/>
</Border>
<ItemsPresenter x:Name="ItemsHost" Grid.ColumnSpan="2" Grid.Column="1" Grid.Row="1" Margin="-12,0,0,0"/>
</Grid>
<ControlTemplate.Triggers>
<Trigger Property="IsExpanded" Value="false">
<Setter Property="Visibility" TargetName="ItemsHost" Value="Collapsed"/>
</Trigger>
<Trigger Property="HasItems" Value="false">
<Setter Property="Visibility" TargetName="Expander" Value="Hidden"/>
</Trigger>
<Trigger Property="IsSelected" Value="true">
<Setter Property="Background" TargetName="Bd" Value="{DynamicResource {x:Static SystemColors.HighlightBrushKey}}"/>
<Setter Property="Foreground" Value="{DynamicResource {x:Static SystemColors.HighlightTextBrushKey}}"/>
</Trigger>
<MultiTrigger>
<MultiTrigger.Conditions>
<Condition Property="IsSelected" Value="true"/>
<Condition Property="IsSelectionActive" Value="false"/>
</MultiTrigger.Conditions>
<Setter Property="Background" TargetName="Bd" Value="{DynamicResource {x:Static SystemColors.ControlBrushKey}}"/>
<Setter Property="Foreground" Value="{DynamicResource {x:Static SystemColors.ControlTextBrushKey}}"/>
</MultiTrigger>
<Trigger Property="IsEnabled" Value="false">
<Setter Property="Foreground" Value="{DynamicResource {x:Static SystemColors.GrayTextBrushKey}}"/>
</Trigger>
</ControlTemplate.Triggers>
</ControlTemplate>
</Setter.Value>
</Setter>
<Style.Triggers>
<Trigger Property="VirtualizingStackPanel.IsVirtualizing" Value="true">
<Setter Property="ItemsPanel">
<Setter.Value>
<ItemsPanelTemplate>
<VirtualizingStackPanel/>
</ItemsPanelTemplate>
</Setter.Value>
</Setter>
</Trigger>
</Style.Triggers>
</Style>