彩票走势图

TX Text Control系列教程—Windows Forms:使用对象作为数据源

翻译|使用教程|编辑:况鱼杰|2021-01-14 14:48:07.287|阅读 133 次

概述:直接使用可枚举的业务对象作为数据源来合并模板是TX Text Control Reporting的典型方案之一。

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

相关链接:

TX Text Control .NET for Windows Forms 是一套功能丰富的文字处理控件,它以可重复使用控件的形式为开发人员提供了Word中常用的文字处理功能,对于需要强大且灵活的文档处理能力的应用程序而言,是理想的选择。

点击下载 TX Text Control .NET for Windows Forms X19试用版


直接使用可枚举的业务对象作为数据源来合并模板是TX Text Control Reporting的典型方案之一。

使用IEnumerable对象作为数据源

MailMerge将集合中对象的所有公共属性解释为表列和子表。 IEnumerable类型的属性会自动实例化为关系,并用于合并块和嵌套合并块。考虑以下类结构作为数据源:

以下是代表以上UML类设计的代码:

public class Invoice
{
    public List<Product> Products
    {
        get;
        set;
    }
    public Customer Customer
    {
        get;
        set;
    }
}
public class Product
{
    public Product(string Name, Decimal Price)
    {
        this.Name = Name;
        this.Price = Price;
    }
    public string Name
    {
        get;
        set;
    }
    public Decimal Price
    {
        get;
        set;
    }
}

该模板包含一个名为Products的合并块。 块中的合并字段名为“名称”和“价格”。

以下代码显示了如何创建数据源对象以及如何使用MergeObjects启动合并过程:

Invoice invoice = new Invoice();
invoice.Products = new List<Product>();
invoice.Products.Add(new Product("Apple", 3.55m));
invoice.Products.Add(new Product("Banana", 2.4m));
invoice.Products.Add(new Product("Pineapple", 2.99m));
var invoices = new List<Invoice>();
invoices.Add(invoice);
mailMerge1.MergeObjects(invoices);

文章推荐:

TX Text Control系列教程—Windows Forms:创建应用程序


如果您对Text Control感兴趣,可以咨询购买正版授权软件。

关注慧聚IT微信公众号 ☟☟☟,了解产品的最新动态及最新资讯。

1561953111.jpg


标签:

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

文章转载自:

为你推荐

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


添加微信 立即咨询

电话咨询

客服热线
023-68661681

TOP