zoukankan      html  css  js  c++  java
  • C#控件TreeView在选中后图标改变的解决办法

    C#控件TreeView选中图标的解决办法

             'SelectedImageIndex's intent is to allow displaying a different image upon selection than what is set by the 'ImageIndex' for a particular node. To keep these two consistent it is necessary to set them to the same value. This can be done at design time or programmatically depending on your needs.

              For example, if the images never change then it is as simple as setting them concurrently when a new node is added to the TreeView:

    intmyCurrentImageIndex=0;
    TreeNodenode=myTreeView.Nodes.Add("new node!");
    node.ImageIndex=node.SelectedImageIndex=myCurrentImageIndex;

             However, if you do change the ImageIndex value for any reason after its initial creation (such as a response to some kind of user action), then you must also change the SelectedImageIndex as well. Otherwise, they will become inconsistent.

    intmyNewImageIndex=1;

    node.ImageIndex=node.SelectedImageIndex=myNewImageIndex;

  • 相关阅读:
    Hibernate Validation注解列表
    Java_Shell多线程
    Lua读写文件
    shell导出和导入redis
    大文件读写
    Java_Hbase优化
    控制语句if
    字典(DICT)
    元组Tuple
    Session 会话
  • 原文地址:https://www.cnblogs.com/hewei2012/p/3102246.html
Copyright © 2011-2022 走看看