-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #3 from MyBlueHorizon/1.7-next
同步
- Loading branch information
Showing
18 changed files
with
284 additions
and
301 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
<Window x:Class="FunctionWindow" | ||
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" | ||
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" | ||
xmlns:d="http://schemas.microsoft.com/expression/blend/2008" | ||
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" | ||
xmlns:local="clr-namespace:ClassTable" | ||
mc:Ignorable="d" | ||
WindowStartupLocation="CenterScreen" | ||
ResizeMode="NoResize" | ||
Background="{Binding AppBackgroundColorBrush}" | ||
Foreground="{Binding AppForegroundColorBrush}" | ||
Title="ClassTable - 功能窗口" Height="180" Width="320" AllowsTransparency="True" | ||
WindowStyle="None" Topmost="True" Icon="Resource/Icons/AppIcon.ico"> | ||
<Window.DataContext> | ||
<local:AppProperty/> | ||
</Window.DataContext> | ||
<Grid> | ||
<Frame x:Name="MainFrame" Source="Page/SettingPage.xaml" NavigationUIVisibility="Hidden"/> | ||
</Grid> | ||
</Window> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
Public Class FunctionWindow | ||
Public Sub ChangeToSetting() | ||
MainFrame.Navigate(New Uri("Page/SettingPage.xaml", UriKind.Relative)) | ||
End Sub | ||
Public Sub ChangeToAbout() | ||
MainFrame.Navigate(New Uri("Page/AboutPage.xaml", UriKind.Relative)) | ||
End Sub | ||
Public Sub ChangeToUpdate() | ||
MainFrame.Navigate(New Uri("Page/UpdatePage.xaml", UriKind.Relative)) | ||
End Sub | ||
Public Sub HideFunctionWindow() | ||
Hide() | ||
End Sub | ||
Private Sub FunctionWindow_Closing(sender As Object, e As ComponentModel.CancelEventArgs) Handles Me.Closing | ||
Hide() | ||
e.Cancel = True | ||
End Sub | ||
Private Sub LegacySettingWindow_MouseLeftButtonDown(sender As Object, e As MouseButtonEventArgs) Handles Me.MouseLeftButtonDown | ||
DragMove() | ||
End Sub | ||
End Class |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.