Skip to content

Commit 6c2818b

Browse files
Initial release
1 parent 9bcaeae commit 6c2818b

360 files changed

Lines changed: 21501 additions & 0 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.vs/OSCRelay.csproj.dtbcache.json

Lines changed: 1 addition & 0 deletions
Large diffs are not rendered by default.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.

.vs/OSCRelay/v17/.suo

71.5 KB
Binary file not shown.

About.xaml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
<Window x:Class="harunadev.OSCRelay.About"
2+
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
3+
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
4+
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
5+
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
6+
xmlns:ui="http://schemas.modernwpf.com/2019"
7+
ui:WindowHelper.UseModernWindowStyle="True"
8+
xmlns:local="clr-namespace:OSCRelay"
9+
mc:Ignorable="d"
10+
Title="About" Height="220" Width="520">
11+
<Grid>
12+
<TextBlock Name="AboutText" TextWrapping="Wrap" Text="OpenVRBatteryToOSC" TextAlignment="Center" VerticalAlignment="Center"/>
13+
</Grid>
14+
</Window>

About.xaml.cs

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
using System.Windows;
2+
3+
namespace harunadev.OSCRelay
4+
{
5+
public partial class About : Window
6+
{
7+
public About()
8+
{
9+
InitializeComponent();
10+
11+
AboutText.Text = $"OSCRelay 1.0\nMade by harunadev\n\nOpenVR: https://github.com/ValveSoftware/openvr\nJSON: https://www.newtonsoft.com/json\nModernWpfUI: https://github.com/Kinnara/ModernWpf\nOSC: https://github.com/tilde-love/osc-core";
12+
}
13+
}
14+
}

App.config

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<configuration>
3+
<startup>
4+
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.8"/>
5+
</startup>
6+
</configuration>

0 commit comments

Comments
 (0)