forked from microsoft/microsoft-ui-xaml
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathWebView2TestPage.xaml.cpp
43 lines (37 loc) · 1.08 KB
/
WebView2TestPage.xaml.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
//
// BlankPage.xaml.cpp
// Implementation of the BlankPage class
//
#include "pch.h"
#include "WebView2TestPage.xaml.h"
#include "App.xaml.h"
using namespace TestAppCX;
using namespace Platform;
using namespace Windows::Foundation;
using namespace Windows::Foundation::Collections;
using namespace Windows::ApplicationModel::Core;
using namespace Windows::UI::Core;
using namespace Windows::UI::ViewManagement;
using namespace Windows::UI::Xaml;
using namespace Windows::UI::Xaml::Controls;
using namespace Windows::UI::Xaml::Controls::Primitives;
using namespace Windows::UI::Xaml::Data;
using namespace Windows::UI::Xaml::Input;
using namespace Windows::UI::Xaml::Media;
using namespace Windows::UI::Xaml::Navigation;
// The Blank Page item template is documented at https://go.microsoft.com/fwlink/?LinkId=234238
WebView2TestPage::WebView2TestPage()
{
InitializeComponent();
}
void WebView2TestPage::OnGo(Platform::Object^ sender, Windows::UI::Xaml::RoutedEventArgs^ e)
{
try
{
wv2->Source = ref new Uri(url->Text);
}
catch (...)
{
// Eat bad Uris
}
}