From 39b91ade25d5fe70abc0fb9a5f72950fe6257e64 Mon Sep 17 00:00:00 2001 From: tobiichiamane Date: Mon, 24 Feb 2020 12:42:46 +0800 Subject: [PATCH] =?UTF-8?q?=E4=B8=BA=E7=99=BB=E5=BD=95=E9=A1=B5=E9=9D=A2?= =?UTF-8?q?=E6=B7=BB=E5=8A=A0=E5=8F=8D=E9=A6=88=E6=8C=89=E9=92=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- PixivFSUWP/LoginPage.xaml | 10 ++++++++++ PixivFSUWP/LoginPage.xaml.cs | 6 ++++++ 2 files changed, 16 insertions(+) diff --git a/PixivFSUWP/LoginPage.xaml b/PixivFSUWP/LoginPage.xaml index aefc45d..7137717 100644 --- a/PixivFSUWP/LoginPage.xaml +++ b/PixivFSUWP/LoginPage.xaml @@ -129,5 +129,15 @@ + + + diff --git a/PixivFSUWP/LoginPage.xaml.cs b/PixivFSUWP/LoginPage.xaml.cs index 23ae3d5..71cd2d1 100644 --- a/PixivFSUWP/LoginPage.xaml.cs +++ b/PixivFSUWP/LoginPage.xaml.cs @@ -167,5 +167,11 @@ private async void Button_Click(object sender, RoutedEventArgs e) await Launcher.LaunchUriAsync(new Uri(@"https://www.pixiv.net/member_illust.php?mode=medium&illust_id=31251762")); } + + private async void btnReport_Click(object sender, RoutedEventArgs e) + { + //在新窗口中打开发送反馈的窗口 + await ShowNewWindow(typeof(ReportIssuePage), null); + } } }