zoukankan      html  css  js  c++  java
  • DevExpress.XtraLayout.LayoutControl 动态添加控件

    // Create an item within a specified group,
    // bound to a specified data field with the specified editor
    private LayoutControlItem CreateItemWithBoundEditor(BaseEdit editor, object dataSource,
       string dataMember, LayoutControlGroup parentGroup) {
       editor.DataBindings.Add("EditValue", dataSource, dataMember);
       LayoutControlItem item = parentGroup.AddItem(dataMember, editor) as LayoutControlItem;
       return item;
    }
    private void CreateLayout() {
       //Add First Name and Last Name items
       LayoutControlItem itemFirstName = CreateItemWithBoundEditor(new TextEdit(), employeesSource,
          "FirstName", layoutControl1.Root);
       LayoutControlItem itemLastName = CreateItemWithBoundEditor(new TextEdit(), employeesSource,
          "LastName", layoutControl1.Root);
       // Move the Last Name to the right of the First Name
       itemLastName.Move(itemFirstName, InsertTypes.Right);

       // Add the Birthday group with a birthday editor inside
       LayoutControlGroup birthdayGroup = layoutControl1.AddGroup("Birthday Information");
       CreateItemWithBoundEditor(new DateEdit(), employeesSource, "BirthDate", birthdayGroup);

       // Add a tab with three address fields
       TabbedControlGroup tabbedGroup = layoutControl1.AddTabbedGroup();
       LayoutControlGroup addressGroup = tabbedGroup.AddTabPage("Address Details");
       string[] dataFields = new string[] { "Country", "City", "Address" };
       foreach (string dataField in dataFields)
          CreateItemWithBoundEditor(new TextEdit(), employeesSource, dataField, addressGroup);

       // Add a tab with a photo
       LayoutControlGroup groupPhoto = tabbedGroup.AddTabPage("Photo");
       CreateItemWithBoundEditor(new PictureEdit(), employeesSource, "Photo", groupPhoto);
    }

    再次添加的时候如果需要先清除之前的item,代码如下

                layoutControlSelectBusiness.BeginUpdate();
                layoutControlSelectBusiness.Controls.Clear();
                layoutControlSelectBusiness.Root.Items.Clear();

                再次添加item的代码

               layoutControlSelectBusiness.EndUpdate();

    谢谢你提供的这篇代码,帮我解决了layoutControl多列自动排版的问题, 关键代码: 
    // Move the Last Name to the right of the First Name
    itemLastName.Move(itemFirstName, DevExpress.XtraLayout.Utils.InsertType.Right);
    再次表示感谢!

  • 相关阅读:
    select.poll,epoll的区别与应用
    hibernate生成查询语句但查不到数据
    优化exp/imp导入导出速度大全
    完美逆向百度手机助手5.0底部菜单栏
    C#序列化和反序列化
    Centos6 编译安装局域网NTP服务器
    linux查看服务器型号
    fopen/fclose
    C文件操作之写入字符串到指定文件并在屏幕显示
    Centos6.x X64 飞信安装
  • 原文地址:https://www.cnblogs.com/eastson/p/3854710.html
Copyright © 2011-2022 走看看