01.
using
System;
02.
using
System.Collections.Generic;
03.
using
System.IO;
04.
using
System.Linq;
05.
using
Windows.Foundation;
06.
using
Windows.Foundation.Collections;
07.
using
Windows.UI.Xaml;
08.
using
Windows.UI.Xaml.Controls;
09.
using
Windows.UI.Xaml.Controls.Primitives;
10.
using
Windows.UI.Xaml.Data;
11.
using
Windows.UI.Xaml.Input;
12.
using
Windows.UI.Xaml.Media;
13.
using
Windows.UI.Xaml.Navigation;
14.
15.
namespace
App74
16.
{
17.
/// <summary>
18.
/// それ自体で使用できる空白ページまたはフレーム内に移動できる空白ページ。
19.
/// </summary>
20.
public
sealed
partial
class
MainPage : Page
21.
{
22.
public
MainPage()
23.
{
24.
this
.InitializeComponent();
25.
}
26.
27.
/// <summary>
28.
/// このページがフレームに表示されるときに呼び出されます。
29.
/// </summary>
30.
/// <param name="e">このページにどのように到達したかを説明するイベント データ。Parameter
31.
/// プロパティは、通常、ページを構成するために使用します。</param>
32.
protected
override
void
OnNavigatedTo(NavigationEventArgs e)
33.
{
34.
}
35.
36.
private
void
Button_Click_1(
object
sender, RoutedEventArgs e)
37.
{
38.
this
.Frame.Navigate(
typeof
(BasicPage1));
39.
}
40.
private
void
AppBar_Opened(
object
sender,
object
e)
41.
{
42.
WebViewBrush wvb =
new
WebViewBrush();
43.
wvb.SourceName =
"contentView"
;
44.
wvb.Redraw();
45.
contentViewRect.Fill = wvb;
46.
contentView.Visibility = Windows.UI.Xaml.Visibility.Collapsed;
47.
}
48.
49.
private
void
AppBar_Closed(
object
sender,
object
e)
50.
{
51.
contentView.Visibility = Windows.UI.Xaml.Visibility.Visible;
52.
contentViewRect.Fill =
new
SolidColorBrush(Windows.UI.Colors.Transparent);
53.
}
54.
55.
private
void
Refresh_Click(
object
sender, RoutedEventArgs e)
56.
{
57.
contentView.Navigate(
new
Uri(
"http://www.contoso.com"
));
58.
bottomAppBar.IsOpen =
false
;
59.
}
60.
}
61.
}