• TreeList右键功能及常见设置


    1、TreeList设置内容不可编辑,在OptionBehavior中的Editable属性设置为false即可.GridControl同样
    2、TreeList获取节点的内容,node.GetDisplayText(object ColumnID),参数为获取列的编号;
    3、TreeList鼠标右键绑定事件:

     private void MenuList_MouseDown(object sender, MouseEventArgs e)
            {
                if (e.Button == MouseButtons.Right)
                {
                    MenuList.ContextMenu = null;
                    TreeListHitInfo hInfo = MenuList.CalcHitInfo(new Point(e.X, e.Y));
                    TreeListNode node = hInfo.Node;
                    if (node != null)
                    {
                        MenuList.FocusedNode = node;
                        MenuList.ContextMenuStrip = contextMenu;
                    }
                }
            }



  • 相关阅读:
    mysql安装及初始密码问题
    centos7上安装erlang22.1
    共享文件夹设置
    putty免密登录
    重新开始
    单任务多线程 安全
    线程池
    多线程
    commons-IO
    打印流
  • 原文地址:https://www.cnblogs.com/dengshiwei/p/3971477.html
Copyright © 2020-2023  润新知