Skip to content
This repository has been archived by the owner on Feb 16, 2021. It is now read-only.

Commit

Permalink
添加实验性功能警告按钮
Browse files Browse the repository at this point in the history
  • Loading branch information
tobiichiamane committed Feb 20, 2020
1 parent 6f3ba78 commit 48deb4b
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 0 deletions.
4 changes: 4 additions & 0 deletions PixivFSUWP/MainPage.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,10 @@
<FontIcon FontFamily="{StaticResource SymbolThemeFontFamily}"
FontSize="16" Glyph="&#xE713;"/>
</AppBarButton>
<AppBarButton Width="48" x:Name="btnExperimentalWarning" Click="btnExperimentalWarning_Click">
<FontIcon FontFamily="{StaticResource SymbolThemeFontFamily}"
FontSize="16" Glyph="&#xE7BA;"/>
</AppBarButton>
</StackPanel>
</NavigationView.PaneFooter>
<NavigationView.MenuItems>
Expand Down
5 changes: 5 additions & 0 deletions PixivFSUWP/MainPage.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -242,5 +242,10 @@ private async void btnReport_Click(object sender, RoutedEventArgs e)
//在新窗口中打开发送反馈的窗口
await ShowNewWindow(typeof(ReportIssuePage), null);
}

private void btnExperimentalWarning_Click(object sender, RoutedEventArgs e)
{

}
}
}

0 comments on commit 48deb4b

Please sign in to comment.