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;

  • 相关阅读:
    迷宫寻宝(自编简单版)
    推荐一个免费翻译接口
    nyoj 82
    poj 3984
    Suffix Tree(后缀树)
    python turtle模块绘图
    python continue语句
    python break语句
    pycharm永久破解激活码
    python while死循环
  • 原文地址:https://www.cnblogs.com/hewei2012/p/3102246.html
Copyright © 2011-2022 走看看