码迷,mamicode.com
首页 > Windows程序 > 详细

[WinForm][DevExpress]设置TreeList图片节点背景色

时间:2014-06-20 23:10:02      阅读:494      评论:0      收藏:0      [点我收藏+]

标签:winform   style   class   blog   code   http   

关键代码:

        /// <summary>
        /// 设置图片节点的背景色
        /// 说明:在CustomDrawNodeImages事件中使用
        /// </summary>
        /// <param name="tree">TreeList</param>
        /// <param name="e">CustomDrawNodeImagesEventArgs</param>
        /// <param name="builderBackColorHandler">委托</param>
        public static void CustomImageNodeBackColor(this TreeList tree, CustomDrawNodeImagesEventArgs e, Func<TreeListNode, Color> builderBackColorHandler)
        {
            TreeListNode _node = e.Node;
            Color _backColor = builderBackColorHandler(_node);
            e.Graphics.FillRectangle(new SolidBrush(_backColor), e.Bounds);
        }

使用代码:

        private void tlLHData_CustomDrawNodeImages(object sender, CustomDrawNodeImagesEventArgs e)
        {
            try
            {
                tlLHData.CustomImageNodeBackColor(e, node =>
                {
                    string _cabId = node.GetKeyID();
                    CCabInfo _cabInfo = LHDBHelper.GetCabInfo(_cabId);
                    if (_cabInfo != null)
                    {
                        return _cabInfo.CtuOnlineStatus == 1 ? Color.White : Color.LightGray;
                    }
                    return Color.White;
                });
            }
            catch (Exception)
            {

            }
        }

代码效果

bubuko.com,布布扣

[WinForm][DevExpress]设置TreeList图片节点背景色,布布扣,bubuko.com

[WinForm][DevExpress]设置TreeList图片节点背景色

标签:winform   style   class   blog   code   http   

原文地址:http://www.cnblogs.com/Yan-Zhiwei/p/3795798.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!