Initial commit — WPF guitar note name tutor using FFT frequency detection

This commit is contained in:
2026-05-09 03:17:07 +00:00
commit 99b73f710a
30 changed files with 1637 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
<Window x:Class="GuitarNoteNameTutor.SelectDevice"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="SelectDevice" Height="263" Width="300" Loaded="Window_Loaded">
<Grid>
<ListBox Margin="12,44,12,41" Name="devicesListBox" ListBoxItem.MouseDoubleClick="lbi_MouseDoubleClick" />
<Label Height="28" HorizontalAlignment="Left" Margin="12,10,0,0" Name="label1" VerticalAlignment="Top" Width="120">Available Devices:</Label>
<Button Height="23" Margin="125,0,93,12" Name="okButton" VerticalAlignment="Bottom" IsDefault="True" Click="okButton_Click">OK</Button>
<Button Height="23" HorizontalAlignment="Right" Margin="0,0,12,12" Name="cancelButton" VerticalAlignment="Bottom" Width="75" IsCancel="True">Cancel</Button>
</Grid>
</Window>