Book Image

Microsoft SQL Server 2014 Business Intelligence Development Beginner's Guide

By : Abolfazl Radgoudarzi, Reza Rad
Book Image

Microsoft SQL Server 2014 Business Intelligence Development Beginner's Guide

By: Abolfazl Radgoudarzi, Reza Rad

Overview of this book

Table of Contents (19 chapters)
Microsoft SQL Server 2014 Business Intelligence Development Beginner's Guide
Credits
About the Author
About the Reviewers
www.PacktPub.com
Preface
Index

Time for action – working with reports in Metro applications


In this section, we will open an SSRS report with the help of the Web View control in a Metro application. In a Metro-style application, you will see an XAML code behind. XAML is a well-structured coding method for building powerful GUI. This coding method isolates C# programming for business logic from the XML-based language for the development of a GUI named XAML. Perform the following steps:

  1. Create a new project, and under Visual C#, select Windows Store. Then, choose Blank App and name it App.

  2. Double-click on MainPage.xaml in the solution explorer. You will see that the designer window opens in the main pane, with both the design area and XAML code behind.

  3. From the toolbox, under All XAML Controls, double-click on the Web View control.

  4. When the web view appears in the design area, you can change the Height and Width values of this control from the Properties window or even from XAML code (when you select the control, the XAML code...