xtragrid将选定的行复制到另一个xtragrid

时间:2013-04-07 13:48:22

标签: c# xtragrid

我的环境:vs2012,C#

    public static IList GetList()
    {
        using (var ctx = new ProductCatalogEntities(Constants.EfConnectionString))
        {
            return (from c in ctx.Products
                    select new 
                        {
                            ProductId = c.ProductId
                            ,
                            Name = c.Name
                            ,
                            Code = c.Code
                            ,
                            Price = c.Price
                        }).ToList();
        }
    }

这个方法填充了我的第一个xtragrid,当我选择一些行时,我想点击一个按钮来填充我的第二个xtragrid与那些选定的行,请问如何实现这个?

0 个答案:

没有答案