This repository has been archived by the owner on Dec 22, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Ver 2.2.0-Alpha.6: BIG FUCKING TRASH.
Okay I know I'm producing more and more programming trash, but just give me more time to think about this shit.
- Loading branch information
1 parent
746e4c7
commit 32cc96d
Showing
6 changed files
with
384 additions
and
53 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,87 @@ | ||
<ui:UiWindow x:Class="LoCyanFrpDesktop.DashBoard_Token" | ||
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:ui="http://schemas.lepo.co/wpfui/2022/xaml" | ||
xmlns:local="clr-namespace:LoCyanFrpDesktop" | ||
xmlns:Dashboard="clr-namespace:LoCyanFrpDesktop.Dashboard" | ||
mc:Ignorable="d" | ||
WindowStartupLocation="CenterScreen" | ||
Title="LoCyanFrp - DashBoard [用户界面]" | ||
Height="450" Width="800" | ||
MinHeight="450" | ||
MinWidth="800" | ||
Closing="UiWindow_Closing" | ||
ContentRendered="UiWindow_ContentRendered" | ||
|
||
Icon="/Resource/favicon.ico" | ||
IsVisibleChanged="UiWindow_IsVisibleChanged" | ||
Loaded="UiWindow_Loaded" | ||
AllowDrop="True" | ||
ExtendsContentIntoTitleBar="True" | ||
StateChanged="UiWindow_StateChanged" | ||
Style="{StaticResource UiWindow}" | ||
WindowStyle="None"> | ||
|
||
<Grid> | ||
<Grid.Resources> | ||
<Color x:Key="ShadowColor"></Color> | ||
<SolidColorBrush x:Key="MainBackgroundColor"></SolidColorBrush> | ||
</Grid.Resources> | ||
<Grid.RowDefinitions> | ||
<RowDefinition Height="auto" /> | ||
<RowDefinition Height="*" /> | ||
</Grid.RowDefinitions> | ||
<ui:TitleBar | ||
x:Name="_TitleBar" | ||
Title="LoCyanFrp - DashBoard [用户界面] [一键启动模式]" | ||
Grid.Row="0" | ||
Margin="5,0,0,0" | ||
Padding="0" | ||
Icon="/Resource/favicon.ico"> | ||
|
||
</ui:TitleBar> | ||
<Grid Grid.Row="1"> | ||
<Grid.ColumnDefinitions> | ||
<ColumnDefinition Width="72"/> | ||
<ColumnDefinition Width="*"/> | ||
</Grid.ColumnDefinitions> | ||
<ui:NavigationStore | ||
x:Name="Navigation" | ||
Grid.Column="0" | ||
Margin="6,0,6,9" | ||
Frame="{Binding ElementName=RootFrame}" | ||
SelectedPageIndex="0"> | ||
<ui:NavigationStore.Items> | ||
<ui:NavigationItem | ||
Content="运行状态" | ||
Icon="WindowConsole20" | ||
PageTag="ProxyStatus" | ||
PageType="{x:Type Dashboard:Status}"/> | ||
</ui:NavigationStore.Items> | ||
</ui:NavigationStore> | ||
<Border | ||
Grid.Column="1" | ||
Margin="0" | ||
CornerRadius="8,0,0,0"> | ||
<Frame x:Name="RootFrame" Margin="4,8" /> | ||
</Border> | ||
|
||
<Grid Grid.Column="1"> | ||
<Grid.ColumnDefinitions> | ||
<ColumnDefinition Width="*" /> | ||
<ColumnDefinition Width="Auto" /> | ||
<ColumnDefinition Width="*" /> | ||
</Grid.ColumnDefinitions> | ||
<ui:Snackbar | ||
Margin="0,0,0,20" | ||
x:Name="Snackbar" | ||
Grid.Column="1" | ||
Panel.ZIndex="999" | ||
Timeout="5000" /> | ||
</Grid> | ||
</Grid> | ||
|
||
</Grid> | ||
</ui:UiWindow> |
Oops, something went wrong.