彩票走势图

【Stimulsoft Reports Silverlight教程】在报表中使用Business Objects

翻译|使用教程|编辑:王香|2018-12-10 10:12:10.000|阅读 291 次

概述:此示例显示如何使用Business Objects集合创建报表。

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

相关链接:

下载Stimulsoft Reports Silverlight最新版本

此示例显示如何使用Business Objects集合创建报表。Business Objects是一个对象类数据,使用它可以以不同的结构呈现数据:表,列表,数组等。要使用Bisiness对象,您可以使用报表对象的RegBusinessObject()方法:

private void btDesign_Click(object sender, RoutedEventArgs e)
{
    var stream = System.Reflection.Assembly.GetExecutingAssembly().GetManifestResourceStream(
        "UsingBusinessObjects.SimpleList.mrt");
 
    StiReport report = new StiReport();
    report.Load(stream);
 
    stream.Close();
    stream.Dispose();
    stream = null;
    report.CalculationMode = StiCalculationMode.Interpretation;
    report.RegBusinessObject("Data", "Data", new Data());
 
    report.Design();
}
 
private void btPreview_Click(object sender, RoutedEventArgs e)
{
    var stream = System.Reflection.Assembly.GetExecutingAssembly().GetManifestResourceStream(
        "UsingBusinessObjects.SimpleList.mrt");
 
    StiReport report = new StiReport();
    report.Load(stream);
 
    stream.Close();
    stream.Dispose();
    stream = null;
 
    report.CalculationMode = StiCalculationMode.Interpretation;
    report.RegBusinessObject("Data", "Data", new Data());
    report.Render();
 
    report.Show();
}

Data()对象包含报表所需的数据结构和数据行:

public class Data
{
    private List<CategoriesItem> categoriesItems = new List<CategoriesItem>();
    public List<CategoriesItem> Categories
    {
        get
        {
            return categoriesItems;
        }
        set
        {
            categoriesItems = value;
        }
    }
 
    public class CategoriesItem
    {
        private List<ProductsItem> products;
        public List<ProductsItem> Products
        {
            get
            {
                return products;
            }
            set
            {
                products = value;
            }
        }
 
        private System.Int32? categoryID;
        public System.Int32? CategoryID
        {
            get
            {
                return categoryID;
            }
            set
            {
                categoryID = value;
            }
        }
 
...

下面的屏幕截图中,您可以看到示例代码的结果。

Stimulsoft

购买Stimulsoft正版授权,请点击“”哟!

GrapeCity年末福利大放送

标签:报表报表控件SilverlightStimulsoft

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


为你推荐

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


添加微信 立即咨询

电话咨询

客服热线
023-68661681

TOP