Skip to main content
A newer version of this page is available.

Lesson 1 - Create a Static Report

  • 4 minutes to read

This tutorial describes how to add a report to a Silverlight™ application, and show its Print Preview on a Web page, where it can be printed and/or exported.

To preview a report in Silverlight, a server-side ReportService is required, where the report generation and export are performed. In contrast, the client-side only provides the capability to interactively view reports.

Perform the actions below to prepare a report for printing from a Silverlight application.

Create a Silverlight Application with a Report and WCF Report Service

  1. Run Microsoft Visual Studio 2010, 2012, 2013, 2015, 2017, or 2019.
  2. Start a new project (CTRL+SHIFT+N), and create a new Silverlight Application.

    silverlight-create-new-application

    In the invoked dialog, make sure to check the following option: Host the Silverlight application in a new Web site. This will automatically generate the application’s Web-part, where both the report and report service will reside.

    silverlight-host-the-application

  3. To add a ReportService to the application, switch to the Visual Studio Solution Explorer (CTRL+ALT+L). Then, right-click the SilverlightApplication1.Web file, and in its menu, choose Add | New Item…

    sl-lesson-1-00

    In the invoked dialog, switch to the Reporting section, and choose the DevExpress v14.2 Report Service.

    item-template-silverlight-14-2-devexpress-report-service-application

    After that, Visual Studio automatically creates the ReportService1.svc in the Web application, and adds all the required settings into the configuration section of the Web.config file.

    For this example to work correctly, set SilverlightApplication1.Web as a Start Up Project, and SilverlightApplication1TestPage.aspx as the Start Page. For more details, see XtraReports Service Troubleshooting.

  4. Again, in the Visual Studio Solution Explorer, right-click the SilverlightApplication1.Web file, and in its menu, choose Add | New Item… In the invoked dialog, select the DevExpress v14.2 Report Wizard item and click Add.

    item-template-silverlight-14-2-devexpress-report-wizard-application

    In the XtraReport Wizard dialog, select Blank and click Finish.

    report-wizard-add-empty-report

Construct the Report

Let’s use the Visual Studio report designer to create a simple static report that repeats some text over again and shows the page numbers for every page.

  1. To add a report header where we will show the page numbers, right-click the report area and choose Insert Band | Report Header in the invoked context menu.

    Shared_BandsAddReportHeader

    You can also manage the report’s collection of bands by clicking the Edit and Reorder Bands link that is accessible via any band’s smart tag.

    asp-lesson-1-00

  2. To add a control showing the page numbers on the report header, open the Visual Studio Toolbox (CTRL+ALT+X), and drop an XRPageInfo from the DX.14.2: Report Controls tab onto the band.

    drop-control-XRPageInfo-ReportHeader-14-2

  3. To change the display format for the created control, click its smart tag and specify the Format property (e.g., Page {0} of {1}).

    asp-lesson-1-00-1.png

  4. A report uses the Detail band to show its general data. To add a text label to the report, drop an XRLabel from the DX.14.2: Report Controls tab onto the Detail band.

    drop-control-XRLabel-14-2-silverlight

  5. Double-click the created label to edit its text in-place. To quickly adjust the text color and font options, use the XtraReports Toolbar.

    asp-lesson-1-03

  6. When working with dynamic data, the Detail band is printed multiple times, according to the data retrieved for controls that the band contains.

    For static data, such as in this tutorial, you may wish to repeat the same text over again in your report a certain number of times.

    To do this, set the number of times the Detail band is printed, by setting your report’s XtraReportBase.DetailPrintCountOnEmptyDataSource property.

    DetailPrintCountOnEmptyDataSource

    You can also forbid rendering your report until any data source is provided to it and it has at least one data-bound control, via the DetailBand.PrintOnEmptyDataSource property.

  7. While editing the report, you can view how the report layout will look on a web page by switching to the Preview tab at the bottom of the report designer.

    sl-lesson-1-01

Show the Print Preview

To create a report document and show its Print Preview from where it can be printed or exported, do the following.

  1. Switch to the MainPage.xaml file in SilverlightApplication1 and drop the DocumentViewer item from the DX.14.2.Silverlight: Reporting Toolbox tab onto the page.

    drop-control-document-preview-silverlight-14-2

  2. Then, enable its AutoCreateDocument property, and define its DocumentPreview.Model property, as follows.

    <dxp:DocumentViewer Name="documentViewer1" AutoCreateDocument="True">
        <dxp:DocumentViewer.Model>
            <dxp:ReportPreviewModel ServiceUri="../ReportService1.svc"
                                    ReportName="SilverlightApplication1.Web.XtraReport1" />
        </dxp:DocumentViewer.Model>
    </dxp:DocumentViewer>
    

View the Result

Run the application and view the result.

HowTo_SilverlightReport_3

See Also