BililiveRecorder/BililiveRecorder.WPF/NewMainWindow.xaml

22 lines
1.0 KiB
Plaintext
Raw Normal View History

2020-11-27 18:51:02 +08:00
<Window x:Class="BililiveRecorder.WPF.NewMainWindow"
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.modernwpf.com/2019"
xmlns:local="clr-namespace:BililiveRecorder.WPF"
xmlns:pages="clr-namespace:BililiveRecorder.WPF.Pages"
mc:Ignorable="d"
WindowStartupLocation="CenterScreen"
Background="{DynamicResource SystemControlPageBackgroundAltHighBrush}"
Foreground="{DynamicResource SystemControlPageTextBaseHighBrush}"
ui:ThemeManager.IsThemeAware="True"
ui:WindowHelper.UseModernWindowStyle="True"
Width="1000" Height="650"
MinHeight="400" MinWidth="340"
Closing="Window_Closing"
2020-11-28 13:02:57 +08:00
StateChanged="Window_StateChanged"
2020-11-27 18:51:02 +08:00
Title="录播姬">
2020-11-28 13:02:57 +08:00
<pages:RootPage x:Name="RootPage"/>
2020-11-27 18:51:02 +08:00
</Window>