zoukankan      html  css  js  c++  java
  • NavBarControl 简单配置

    .

                //导航栏按钮
                DevExpress.XtraNavBar.NavBarControl nBC = new DevExpress.XtraNavBar.NavBarControl();
                //导航栏分组按钮
                DevExpress.XtraNavBar.NavBarGroup nBG = new DevExpress.XtraNavBar.NavBarGroup();
                //导航栏分组控件,可以添加 公共控件 或 自定义控件
                DevExpress.XtraNavBar.NavBarGroupControlContainer nBGContainer = new DevExpress.XtraNavBar.NavBarGroupControlContainer();
    
                /*--------------------------*/
                ((System.ComponentModel.ISupportInitialize)(nBC)).BeginInit();
                nBC.SuspendLayout();
                nBGContainer.SuspendLayout();
                ((System.ComponentModel.ISupportInitialize)(this.treeList1)).BeginInit();
                /*--------------------------------------------------------------------------------------------*/
    
                nBG.Caption = "navBarGroup1";
                nBG.ControlContainer = nBGContainer;
                nBG.Expanded = true;
                nBG.GroupClientHeight = 356;
                nBG.GroupStyle = DevExpress.XtraNavBar.NavBarGroupStyle.ControlContainer;
                nBG.Name = "navBarGroup1";
    
                nBG.GroupCaptionUseImage = DevExpress.XtraNavBar.NavBarImage.Large;/*设置图片显示为大图标*/
                //nBG.ImageOptions.LargeImage =   ;/*设置大图片图片*/
                //nBG.ImageOptions.SmallImage =   ;/*设置小图标图片*/
                /*--------------------------*/
                nBGContainer.Appearance.BackColor = System.Drawing.SystemColors.Control;
                nBGContainer.Appearance.Options.UseBackColor = true;
                nBGContainer.Controls.Add(this.treeList1);//添加 公共控件 或 自定义控件
                nBGContainer.Name = "navBarGroupControlContainer1";
                nBGContainer.Size = new System.Drawing.Size(250, 356);
                nBGContainer.TabIndex = 0;
    
    
                /*--------------------------------------------------------------------------------------------*/
                ((System.ComponentModel.ISupportInitialize)(nBC)).EndInit();
                nBC.ResumeLayout(false);
                nBGContainer.ResumeLayout(false);
                ((System.ComponentModel.ISupportInitialize)(this.treeList1)).EndInit();

    其他链接:https://blog.csdn.net/qq992817263/java/article/details/54017869

    .

  • 相关阅读:
    有7g和2g的砝码各一个,怎样称可以3次把140g东西分为50g和90g???????
    中缀到后缀(一个例子)
    动态代理模式的使用
    代理模式用来初始化的延迟下载
    ReentrantLock Condition 实现消费者生产者问题
    Two Sum
    [leetcode]重建二叉树(先序和终须) 中序遍和后续
    (转载)旋转数组查找 最简洁方法 总结
    [不明觉厉] 下一个排列
    codeforces -- 283A
  • 原文地址:https://www.cnblogs.com/lanyubaicl/p/13214853.html
Copyright © 2011-2022 走看看