彩票走势图

[DevExpress] GridControl Master-Detail绑定到对象类型

转帖|使用教程|编辑:龚雪|2017-01-25 11:28:17.000|阅读 789 次

概述:DevExpress GridControl使用技巧及代码示例

# 慧都年终大促·界面/图表报表/文档/IDE等千款热门软控件火热促销中 >>

数据库:C_ProductPlan ,C_ProductPlanItem

DTO定义:(实现每个计划条目-Master,对应多个ProcessInfo-Detail)

    [DataContract]
    [Serializable]
    public class PlanInfo:C_ProductPlan
    {
        public PlanInfo()
        {
            Items = new List<ProducePlanItem>();
        }
      
        [DataMember]
        public List<ProducePlanItem> Items { get; set; }
    }

    [DataContract]
    [Serializable]
    public class ProducePlanItem :C_ProductPlanItem
    {
       

        public ProducePlanItem()
        {
            ProcessConfig = new List<ProcessInfo>();
        }
      
        [DataMember]
        public List<ProcessInfo> ProcessConfig { get; set; }

        

    

    }

    
    [Serializable]
    public class ProcessInfo
    {
        public String Name{get;set;}
        public int Order{get;set;}
        public bool? IsChecked{get;set;}
        public String Memo{get;set;}
    }

UI定义:

index-是行记录,relationIndex是对应的子集合序号(可以有多个子集合),IsEmpty=true时主列表前面的"+"灰色

getCount 返回最大的子集合数

   public class ProducePlanItems : ArrayList, IRelationList
    {
        public ProducePlanItems()
        {

        }


        #region IRelationList 成员

        public System.Collections.IList GetDetailList(int index, int relationIndex)
        {
            return this[index].ProcessConfig;
        }

        public string GetRelationName(int index, int relationIndex)
        {

            return "ProcessConfig";
        }

        public bool IsMasterRowEmpty(int index, int relationIndex)
        {
            return false;
        }

        public int RelationCount
        {
            get { return 1; }
        }

        #endregion

        public virtual new ProducePlanItem this[int index]
        {
            get { return base[index] as ProducePlanItem; }
        }
    }

需要引用Dexexpress.Data.dll,

1.gridview-MainView 绑定到UI中定义的ProducePlanItems.

2.添加一个level1 将level1重命名称ProcessConfig(对应上面IRelationList.GetRelationName的返回

3.level1 添加 gridview2 ,需要手动设置gridview的列,可以设置gridview2的ViewCaption

4.获取数据后将items转化成producePlanItems,并绑定到UI(转载:博客园-遗忘海岸)

想要了解更多DevExpress使用技巧?海量视频课程以及最专业的DevExpress培训尽在。


标签:

本站文章除注明转载外,均为本站原创或翻译。欢迎任何形式的转载,但请务必注明出处、不得修改原文相关链接,如果存在内容上的异议请邮件反馈至chenjj@pclwef.cn


为你推荐

  • 推荐视频
  • 推荐活动
  • 推荐产品
  • 推荐文章
  • 慧都慧问
扫码咨询


添加微信 立即咨询

电话咨询

客服热线
023-68661681

TOP