July 2015
Intermediate to advanced
1300 pages
87h 27m
English
In WPF you have windows and Window objects. In universal Windows apps you have pages and Page objects from the Windows.UI.XAML.Controls namespace. With pages, you still define the user interface with XAML markup, and for each page, there is a Visual Basic code-behind file. In a universal app, a page can automatically adapt its layout to the device. The startup page (MainPage.xaml) is responsible for presenting the RSS feed content to the user. To accomplish this, the page uses the data template defined previously in App.xaml. Following is the XAML code for the described requirements:
<Grid Background="{ThemeResource ApplicationPageBackgroundThemeBrush}"> <Grid.RowDefinitions> ...