MidiBoard/MidiTest/MainWindow.xaml

35 lines
2.9 KiB
Plaintext
Raw Normal View History

2020-02-05 15:35:43 +01:00
<Window x:Class="MidiTest.MainWindow"
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:local="clr-namespace:MidiTest"
mc:Ignorable="d"
Title="MainWindow" Height="443" Width="497">
<Grid>
<Label Content="Midi-Device" HorizontalAlignment="Left" Margin="10,10,0,0" VerticalAlignment="Top"/>
<ComboBox x:Name="MidiSelector" HorizontalAlignment="Left" Margin="89,12,0,0" VerticalAlignment="Top" Width="300"/>
<Grid Margin="10,50,10,10">
<Ellipse HorizontalAlignment="Left" Height="40" Margin="10,10,0,0" Stroke="Black" VerticalAlignment="Top" Width="40"/>
<Ellipse HorizontalAlignment="Left" Height="40" Margin="60,10,0,0" Stroke="Black" VerticalAlignment="Top" Width="40"/>
<Ellipse HorizontalAlignment="Left" Height="40" Margin="110,10,0,0" Stroke="Black" VerticalAlignment="Top" Width="40"/>
<Ellipse HorizontalAlignment="Left" Height="40" Margin="160,10,0,0" Stroke="Black" VerticalAlignment="Top" Width="40"/>
<Ellipse HorizontalAlignment="Left" Height="40" Margin="210,10,0,0" Stroke="Black" VerticalAlignment="Top" Width="40"/>
<Ellipse HorizontalAlignment="Left" Height="40" Margin="260,10,0,0" Stroke="Black" VerticalAlignment="Top" Width="40"/>
<Ellipse HorizontalAlignment="Left" Height="40" Margin="310,10,0,0" Stroke="Black" VerticalAlignment="Top" Width="40"/>
<Ellipse HorizontalAlignment="Left" Height="40" Margin="360,10,0,0" Stroke="Black" VerticalAlignment="Top" Width="40"/>
<Rectangle HorizontalAlignment="Left" Height="40" Margin="10,60,0,0" Stroke="Black" VerticalAlignment="Top" Width="40" MouseDown="test" Fill="Black"/>
<Rectangle HorizontalAlignment="Left" Height="40" Margin="60,60,0,0" Stroke="Black" VerticalAlignment="Top" Width="40"/>
<Rectangle HorizontalAlignment="Left" Height="40" Margin="110,60,0,0" Stroke="Black" VerticalAlignment="Top" Width="40"/>
<Rectangle HorizontalAlignment="Left" Height="40" Margin="160,60,0,0" Stroke="Black" VerticalAlignment="Top" Width="40"/>
<Rectangle HorizontalAlignment="Left" Height="40" Margin="210,60,0,0" Stroke="Black" VerticalAlignment="Top" Width="40"/>
<Rectangle HorizontalAlignment="Left" Height="40" Margin="260,60,0,0" Stroke="Black" VerticalAlignment="Top" Width="40"/>
<Rectangle HorizontalAlignment="Left" Height="40" Margin="310,60,0,0" Stroke="Black" VerticalAlignment="Top" Width="40"/>
<Rectangle HorizontalAlignment="Left" Height="40" Margin="360,60,0,0" Stroke="Black" VerticalAlignment="Top" Width="40"/>
<Ellipse HorizontalAlignment="Left" Height="40" Margin="410,60,0,0" Stroke="Black" VerticalAlignment="Top" Width="40"/>
</Grid>
</Grid>
</Window>