[转] TreeList 当前节点图标和背景色设置

高原之上原文TreeList 选中节点时图标状态和背景色

[转] TreeList 当前节点图标和背景色设置

 

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
// 给TreeList加SelectImage
this.treelArea.SelectImageList = imglCustom;
// 去掉选中节点时的虚框
this.treelArea.OptionsView.ShowFocusedFrame;
// 设置选中时节点的背景色
this.treelArea.Appearance.FocusedCell.BackColor = System.Drawing.Color.LightSteelBlue;
this.treelArea.Appearance.FocusedCell.BackColor2 = System.Drawing.Color.SteelBlue;
this.treelArea.Appearance.FocusedCell.Options.UseBackColor = true;
// 选中时会把节点中没显示完全的信息全部显示
this.treelArea.Appearance.FocusedCell.Options.UseTextOptions = true;
this.treelArea.Appearance.FocusedCell.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
 
/// <summary>
/// Handles the GetSelectImage event of the treelArea control.
/// 设置SelectImage的状态,如果是选中的则换成另选中时应该显示的图标
/// </summary>
/// <param name="sender">The source of the event.</param>
/// <param name="e"> instance containing the event data.</param>
 private void treelArea_GetSelectImage(object sender, DevExpress.XtraTreeList.GetSelectImageEventArgs e)
 {         
     e.NodeImageIndex = e.Node.Expanded ? 0 : e.Node.Nodes.Count > 0 ? 1 : 2;
 
     if (e.FocusedNode)
     {
         e.NodeImageIndex += 3;
     }
 }

 

没有整理与归纳的知识,一文不值!高度概括与梳理的知识,才是自己真正的知识与技能。 永远不要让自己的*、好奇、充满创造力的想法被现实的框架所束缚,让创造力*成长吧! 多花时间,关心他(她)人,正如别人所关心你的。理想的腾飞与实现,没有别人的支持与帮助,是万万不能的。



    本文转自wenglabs博客园博客,原文链接:http://www.cnblogs.com/arxive/p/5849548.html,如需转载请自行联系原作者



上一篇:elasticsearch使用指南之Elasticsearch Document Index API详解、原理与示例


下一篇:阿里云欧洲数据中心开放运营:与沃达丰达成战略合作