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

发布于 2024-10-31 16:57:42 字数 83 浏览 0 评论 0原文

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

我该怎么做?

I need to show a single value in telerik report. I need to pass report parameters to the function that returns this single value and and display that returned value in a textbox in the body of the report.

How do I do this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

怪我入戏太深 2024-11-07 16:57:43

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

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

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

I would suggest adding a property in the the partial class of the report and assign it to the control in the NeedDataSource event handler.

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

    private void Report1_NeedDataSource(object sender, EventArgs e)
    {
         myTextBox.Text = ScalerValue.ToString();
    }
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文