ActiveReports 8 > ActiveReports User Guide > Getting Started > Viewing Reports > Using the WPF Viewer |
ActiveReports provides the WPF Viewer that you can use to load and view your reports. This viewer contains a toolbar and a sidebar with Thumbnails, Search results, Document map and Parameters panes.
Warning: The TargetInvocationException occurs on running a WPF browser application in Partial Trust. Refer to Running WPF Viewer in Partial Trust section given below to run your WPF Browser Application in Partial Trust. To ensure that you are using Full Trust:
|
WPF Viewer Toolbar
The following table lists the actions you can perform through the WPF Viewer toolbar.
Toolbar Element | Name | Description |
---|---|---|
Toggle Sidebar | Displays the sidebar that includes the Thumbnails, Parameters, Document map and Search results panes. | |
Displays the Print dialog where you can specify the printing options. | ||
Find | Displays the Find dialog to find any text in the report. | |
Zoom out | Decreases the magnification of your report. | |
Zoom in | Increases the magnification of your report. | |
Current zoom | Displays the current zoom percentage which can also be edited. | |
Fit page width | Fits the width of the page according to viewer dimensions. | |
Fit whole page | Fits the whole page within the current viewer dimensions. | |
First page | Takes you to the first page of the report. This button is enabled when a page other than the first page is open. | |
Previous page | Takes you to the page prior to the current page. This button is enabled when a page other than the first page is open. | |
Current page | Opens a specific page in the report. To view a specific page, type the page number and press the Enter key. | |
Next page | Takes you to the page following the current page. This button is disabled on reaching the last page of the report. | |
Last page | Takes you to the last page of the report. This button is disabled on reaching the last page of the report. | |
Backward | Takes you to the last viewed page. This button is enabled when you move to any page from the initial report page. Clicking this button for the first time also enables the Forward button. | |
Forward | Takes you to last viewed page before you clicked the Backward button. This button is enabled once you click the Backward button. | |
Back to parent report | Returns you to the parent report in a drillthrough report. | |
Refresh | Refreshes the report. | |
Cancel | Cancels rendering of the report. |
WPF Viewer Sidebar
Thumbnails pane
The Thumbnails pane appears by default in the sidebar when you click the Toggle sidebar button in the toolbar.
This pane comprises of a thumbnail view of all the pages in a report. Click any thumbnail to navigate directly to the selected report page. You can also modify the size of the thumbnail when you click (+) or (-) button to zoom in and zoom out.
Search results pane
The Search pane is the other default pane besides Thumbnails that appears in the sidebar when you click the Toggle sidebar button. This pane lets you enter a word or phrase from which to search within the report.
To search in a report:
To start a new search or clear the current search results, click the Clear button under the Find results list.
Document map pane
The Documents map pane sis enabled for reports where the Label property or the Document map label is set. This pane displays each value for the text box, group, or sub report that you label, and you can click them to navigate to the corresponding area of the report in the Viewer.
If a report does not have the Label property or Document map label set, the Documents map panes does not appear in the sidebar.
Parameters pane
The WPF Viewer allows you to view reports with parameters. In the toolbar, click the Toggle sidebar button to open the WPF Viewer sidebar and if your report contains parameters, the Parameters pane shows up automatically.
If a report does not have parameters, the Parameters pane does not appear in the sidebar.
Set up your WPF Application project by using the following steps.
Note: Dragging the Viewer control to the design view of MainWindow.xaml automatically adds the corresponding reference to the licenses.licx file. |
Note:
|
To write the code in Visual Basic.NET
The following example demonstrates how you display a page report in the WPF Viewer control.
Visual Basic.NET code. Paste INSIDE the viewer1_Loaded event in MainWindow.xaml.vb. |
Copy Code
|
---|---|
Viewer1.LoadDocument("YourReportName.rdlx") |
The following example demonstrates how you can display a section report (code-based) in the WPF Viewer control.
Visual Basic.NET code. Paste INSIDE the viewer1_Loaded event in MainWindow.xaml.vb. |
Copy Code
|
---|---|
viewer1.LoadDocument(new YourReportName()) |
The following example demonstrates how you can display a section report (xml-based) in the WPF Viewer control.
Visual Basic.NET code. Paste INSIDE the viewer1_Loaded event in MainWindow.xaml.vb. |
Copy Code
|
---|---|
Viewer1.LoadDocument("YourReportName.rpx") |
To write the code in C#
The following example demonstrates how you display a page report in the WPF Viewer control.
C# code. Paste INSIDE the viewer1_Loaded event in MainWindow.xaml.cs. |
Copy Code
|
---|---|
viewer1.LoadDocument("YourReportName.rdlx"); |
The following example demonstrates how you can display a section report (code-based) in the WPF Viewer control.
C# code. Paste INSIDE the viewer1_Loaded event in MainWindow.xaml.cs. |
Copy Code
|
---|---|
viewer1.LoadDocument(new YourReportName()); |
The following example demonstrates how you can display a section report (xml-based) in the WPF Viewer control.
C# code. Paste INSIDE the viewer1_Loaded event in MainWindow.xaml.cs. |
Copy Code
|
---|---|
viewer1.LoadDocument("YourReportName.rpx"); |
Following is an introduction to the additional capabilities of the Viewer to guide you on using it effectively.
Keyboard Shortcuts
The following shortcuts are available on the WPF Viewer.
Keyboard Shortcut | Action |
---|---|
Ctrl + F | Shows the search pane. |
Ctrl + P | Shows the print dialog. |
Esc | Closes the print dialog. |
Page Down | Moves to the next page. |
Page Up | Moves to the previous page. |
Ctrl + T | Shows or hides the table of contents. |
Ctrl + Home | Moves to the first page. |
Ctrl + End | Moves to the last page. |
Ctrl + Right | Navigates forward. |
Ctrl + Left | Navigates backward. |
Ctrl + - | Zooms out. |
Ctrl + + | Zooms in. |
Left, Right, Up, Down | Moves the visible area of the page in the corresponding direction. |
Ctrl + 0 (zero) | Sets the zoom level to 100%. |
Ctrl + rotate mouse wheel | Changes the zoom level up or down. |
Ctrl + G | Moves the focus to current page toolbar option. |
F5 | Refreshes the report. |
You can run a WPF Viewer Browser Application in Partial Trust by customizing the permission set in the app.mainfest file. While customizing the permission set, some of the permissions are to be set explicitly like MediaPermission, UIPermission, etc. Follow these steps to learn how to run a WPF Viewer application in partial trust.
Note: These steps assume that you have already created a WPF Browser Application that contains the WPF Viewer control. |
Code
Note: The Partial Trust Limitations are applicable to the WPF viewer running in Partial Trust. For more information, see Medium Trust Support. |