如何在Telerik报告中显示单个标量值?

时间:2011-04-12 17:50:02

标签: c# .net telerik telerik-reporting

我需要在telerik报告中显示单个值。我需要将报表参数传递给返回此单个值的函数,并在报表正文的文本框中显示该返回值。

我该怎么做?

1 个答案:

答案 0 :(得分:1)

我建议在报告的partial类中添加一个属性,并将其分配给NeedDataSource事件处理程序中的控件。

public partial class SimpleReport : Telerik.Reporting.Report
{
    public int ScalerValue;

    private void Report1_NeedDataSource(object sender, EventArgs e)
    {
         myTextBox.Text = ScalerValue.ToString();
    }
}