mirror of
https://github.com/the1812/Bilibili-Evolved.git
synced 2025-11-04 21:22:45 +08:00
27 lines
909 B
XML
27 lines
909 B
XML
<Window
|
|
x:Class="VideoLinkDownloader.MainWindow"
|
|
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:VideoLinkDownloader"
|
|
mc:Ignorable="d"
|
|
Background="{DynamicResource Background}"
|
|
Foreground="{DynamicResource Foreground}"
|
|
WindowStartupLocation="CenterScreen"
|
|
Title="Bilibili Evolved Video Link Downloader"
|
|
Height="800"
|
|
Width="600">
|
|
<WindowChrome.WindowChrome>
|
|
<WindowChrome
|
|
GlassFrameThickness="1"
|
|
ResizeBorderThickness="4"
|
|
CaptionHeight="0" />
|
|
</WindowChrome.WindowChrome>
|
|
<Grid>
|
|
<Frame
|
|
Background="Transparent"
|
|
Source="Pages/Main/MainPage.xaml"
|
|
NavigationUIVisibility="Hidden" />
|
|
</Grid>
|
|
</Window> |