Bilibili-Evolved/extras/vld-windows/VideoLinkDownloader/MainWindow.xaml
2019-05-30 20:15:19 +08:00

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>