forked from AnilOsmanTur/SignRecorderAU
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
49 changed files
with
240 additions
and
31,513 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
<Window x:Class="KinectRecorder.AddUser" | ||
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" | ||
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" | ||
Title="AddUser" Height="113.91" Width="302.256"> | ||
<Grid> | ||
<Button x:Name="okBtn" Content="OK" HorizontalAlignment="Left" Margin="209,53,0,0" VerticalAlignment="Top" Width="75" FontWeight="Bold" Click="okBtn_Click"/> | ||
<TextBox x:Name="NameBox" HorizontalAlignment="Left" Height="26" Margin="10,10,0,0" TextWrapping="Wrap" Text="Meymet" VerticalAlignment="Top" Width="194" FontSize="14"/> | ||
<Label Content="Name" HorizontalAlignment="Left" Margin="209,10,0,0" VerticalAlignment="Top" Width="75" FontSize="14" Height="26" FontWeight="Bold"/> | ||
|
||
</Grid> | ||
</Window> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
using System; | ||
using System.Collections.Generic; | ||
using System.Linq; | ||
using System.Text; | ||
using System.Threading.Tasks; | ||
using System.Windows; | ||
using System.Windows.Controls; | ||
using System.Windows.Data; | ||
using System.Windows.Documents; | ||
using System.Windows.Input; | ||
using System.Windows.Media; | ||
using System.Windows.Media.Imaging; | ||
using System.Windows.Shapes; | ||
|
||
namespace KinectRecorder | ||
{ | ||
/// <summary> | ||
/// Interaction logic for AddUser.xaml | ||
/// </summary> | ||
public partial class AddUser : Window | ||
{ | ||
public string userName = ""; | ||
|
||
public AddUser() | ||
{ | ||
InitializeComponent(); | ||
} | ||
|
||
private void okBtn_Click(object sender, RoutedEventArgs e) | ||
{ | ||
this.DialogResult = true; | ||
this.userName = NameBox.Text; | ||
} | ||
|
||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
<Window x:Class="KinectRecorder.AddWord" | ||
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" | ||
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" | ||
Title="AddWord" Height="111.654" Width="298.872"> | ||
<Grid> | ||
<Button x:Name="okBtn" Content="OK" HorizontalAlignment="Left" Margin="206,51,0,0" VerticalAlignment="Top" Width="75" FontWeight="Bold" Click="okBtn_Click"/> | ||
<TextBox x:Name="WordNameBox" HorizontalAlignment="Left" Height="26" Margin="10,10,0,0" TextWrapping="Wrap" Text="pota" VerticalAlignment="Top" Width="194" FontSize="14"/> | ||
<Label Content="Word" HorizontalAlignment="Left" Margin="209,10,0,0" VerticalAlignment="Top" Width="75" FontSize="14" Height="26" FontWeight="Bold"/> | ||
|
||
</Grid> | ||
</Window> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
using System; | ||
using System.Collections.Generic; | ||
using System.Linq; | ||
using System.Text; | ||
using System.Threading.Tasks; | ||
using System.Windows; | ||
using System.Windows.Controls; | ||
using System.Windows.Data; | ||
using System.Windows.Documents; | ||
using System.Windows.Input; | ||
using System.Windows.Media; | ||
using System.Windows.Media.Imaging; | ||
using System.Windows.Shapes; | ||
|
||
namespace KinectRecorder | ||
{ | ||
/// <summary> | ||
/// Interaction logic for AddWord.xaml | ||
/// </summary> | ||
public partial class AddWord : Window | ||
{ | ||
public string wordName = ""; | ||
|
||
public AddWord() | ||
{ | ||
InitializeComponent(); | ||
} | ||
|
||
private void okBtn_Click(object sender, RoutedEventArgs e) | ||
{ | ||
this.DialogResult = true; | ||
this.wordName = WordNameBox.Text; | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<Project ToolsVersion="12.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | ||
<PropertyGroup> | ||
<PublishUrlHistory>publish\</PublishUrlHistory> | ||
<InstallUrlHistory /> | ||
<SupportUrlHistory /> | ||
<UpdateUrlHistory /> | ||
<BootstrapperUrlHistory /> | ||
<ErrorReportUrlHistory /> | ||
<FallbackCulture>en-US</FallbackCulture> | ||
<VerifyUploadedFiles>false</VerifyUploadedFiles> | ||
</PropertyGroup> | ||
</Project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
Oops, something went wrong.