C# WinForms TreeView &图片列表
我有树视图和 2 个图像列表,第一个图像列表仅包含 42x42 的图像,第二个 36x36 第一个用于根,第二个用于子项。是否可以为树视图选择 2 个图像列表,
以便...第二个问题:我有由管理员添加的用户。我现在如何在添加用户时创建子节点,但如何添加当前根节点?
I have treeview and 2 imagelist first image list contains images only 42x42 and second 36x36 first for roots and second for childs. does it possible to choose 2 imagelist for treeview
so... Second question : I have users which adding by admin. I now how to create child nodes when users is added but how can i add in current root?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
TreeView 仅支持从单个 ImageList 中选择图像。您可以将两个 ImageList 实例合并为一个 42x42 的新实例,但这可能无法很好地呈现。
我认为我理解你的第二个问题。将 TreeView.ShowRootLines 值设置为 false,然后将节点添加到 TreeView.Nodes 集合中。
TreeView only supports selecting an image from a single ImageList. You can combine the two ImageList instances into a new one that is 42x42, but that may not render very well.
I Think I understand your second question. Set the TreeView.ShowRootLines value to false and then just add nodes to the TreeView.Nodes collection.