-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAbout.xaml
More file actions
14 lines (14 loc) · 721 Bytes
/
About.xaml
File metadata and controls
14 lines (14 loc) · 721 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<Window x:Class="harunadev.OSCRelay.About"
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"
ui:WindowHelper.UseModernWindowStyle="True"
xmlns:local="clr-namespace:OSCRelay"
mc:Ignorable="d"
Title="About" Height="220" Width="520">
<Grid>
<TextBlock Name="AboutText" TextWrapping="Wrap" Text="OpenVRBatteryToOSC" TextAlignment="Center" VerticalAlignment="Center"/>
</Grid>
</Window>