当前节点图标与默认节点图标不同

发布于 2024-11-05 03:45:06 字数 176 浏览 1 评论 0原文

我有一个带有命名节点的树视图。为了帮助用户,每个节点都可以有四个图标之一。默认项目 (0) 为白色。

我很困惑,但知道我已经确定了“错误行为”。

图标设置正确并且在我的树视图中是正确的,但是每次我“单击”节点时,它都会被选中并显示默认图标(白色)。

如何更改行为以使所选节点显示正确的图标?

I have a Treeview with named nodes. To help the user, every Node can have one of four icons. The default Item (0) is white.

I got confused but know I have pinned down the "wrong behavior".

The icons get set up correctly and are correct in my Treeview, but every time I "click" on a node it gets selected and the default Icon is shown (white).

How can I change the behaviour to make the selected node show its correct icon?

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

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

发布评论

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

评论(1

尐偏执 2024-11-12 03:45:06

首先给节点图像命名:

this.treeView.ImageList.Images.Add("TABLE", global::OrangeUI.Properties.Resources.table);

然后您可以像这样设置不同的图标:

this.treeView.SelectedNode.ImageKey = "TABLE"; this.treeView.SelectedNode.SelectedImageKey
= "TABLE";

First giv the Node Image a Name:

this.treeView.ImageList.Images.Add("TABLE", global::OrangeUI.Properties.Resources.table);

Than you can set the different Icons like that:

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