将样式应用于所有 TreeViewItem

发布于 2024-08-03 04:27:04 字数 213 浏览 5 评论 0原文

您好,我遇到的问题是我有多个 TreeView 控件,每个 TreeView 都有自己的 TreeViewItem 样式, 设置它

TreeView ItemContainerStyle="{StaticResource Style1}"

只会设置根元素而不是所有子元素,如何将样式应用于 TreeView 中的所有子元素

Hi The problem am having is that I have multiple TreeView control and each TreeView has its own TreeViewItem styles,
setting it

TreeView ItemContainerStyle="{StaticResource Style1}"

will only set the root element NOT all the child elements, How to apply a style to all the child elements in a TreeView

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

黯然#的苍凉 2024-08-10 04:27:04

有多种方法可以实现此目的:

您可以将样式设置为所有 TreeViewItems 的默认样式:

<Style TargetType="{x:Type TreeViewItem}">
...
</Style>

不同之处在于您不设置 x:Key 属性,但设置 TargetType 属性。在这种情况下,您不需要在 TreeView 上设置 ItemContainerStyle。


You could also set your style as the default style for all TreeViewItems, but only within your TreeView:

<TreeView>
    <TreeView.Resources>
        <Style TargetType="{x:Type TreeViewItem}" BasedOn="{StaticResource Style1}"/>
    </TreeView.Resources>
</TreeView>

在这种情况下,您也不需要在 TreeView 上设置 ItemContainerStyle。


您还可以按如下方式更改样式。

<Style x:Key="Style1" TargetType="{x:Type TreeViewItem}">
    <Setter Property="ItemContainerStyle" Value="{StaticResource Style1}"/>
</Style>

在这种情况下,您仍然需要在 TreeView 上设置 ItemContainerStyle。

There are several ways to accomplish this:

You could make your style the default for all TreeViewItems:

<Style TargetType="{x:Type TreeViewItem}">
...
</Style>

The difference is that you do not set the x:Key attribute, but you do set the TargetType attribute. You do not need to set the ItemContainerStyle on your TreeView in this case.


You could also set your style as the default style for all TreeViewItems, but only within your TreeView:

<TreeView>
    <TreeView.Resources>
        <Style TargetType="{x:Type TreeViewItem}" BasedOn="{StaticResource Style1}"/>
    </TreeView.Resources>
</TreeView>

In this case you also do not need to set the ItemContainerStyle on your TreeView.


You could also alter your style as follows

<Style x:Key="Style1" TargetType="{x:Type TreeViewItem}">
    <Setter Property="ItemContainerStyle" Value="{StaticResource Style1}"/>
</Style>

In this case you'd still have to set the ItemContainerStyle on your TreeView.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文