12 lines
875 B
XML
12 lines
875 B
XML
<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>
|