Files
VRCX/MainWindow.xaml
2021-02-05 03:18:05 +09:00

26 lines
924 B
XML

<Window x:Class="VRCX.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:VRCX"
mc:Ignorable="d"
Title="VRCX"
Width="800"
Height="450"
MinWidth="320"
MinHeight="240"
WindowStyle="None"
WindowStartupLocation="CenterScreen"
Loaded="Window_Loaded"
Closed="Window_Closed"
Closing="Window_Closing"
LocationChanged="Window_LocationChanged"
SizeChanged="Window_SizeChanged">
<WindowChrome.WindowChrome>
<WindowChrome
CaptionHeight="0"
ResizeBorderThickness="5"/>
</WindowChrome.WindowChrome>
</Window>