52 lines
3.1 KiB
XML
52 lines
3.1 KiB
XML
<Window x:Class="RawDataViewer.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:RawDataViewer"
|
|
mc:Ignorable="d"
|
|
Title="MainWindow" Height="450" Width="800"
|
|
>
|
|
|
|
<Grid>
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition Height="10*"/>
|
|
<RowDefinition Height="60*"/>
|
|
<RowDefinition Height="30*"/>
|
|
</Grid.RowDefinitions>
|
|
|
|
<StackPanel Orientation="Horizontal" Grid.Row="1" >
|
|
<Expander Header="@h1" HorizontalAlignment="Left" Height="348" VerticalAlignment="Top" ExpandDirection="Left" >
|
|
<Rectangle Fill="#FFF4F4F5" Stroke="Black" Width="100"/>
|
|
</Expander>
|
|
<Expander Header="@h2" HorizontalAlignment="Left" Height="348" VerticalAlignment="Top" ExpandDirection="Left">
|
|
<Rectangle Fill="#FFF4F4F5" Stroke="Black" Width="100"/>
|
|
</Expander>
|
|
<Expander Header="@h3" HorizontalAlignment="Left" Height="348" VerticalAlignment="Top" ExpandDirection="Left">
|
|
<Rectangle Fill="#FFF4F4F5" Stroke="Black" Width="100"/>
|
|
</Expander>
|
|
<Expander Header="@f" HorizontalAlignment="Left" Height="348" VerticalAlignment="Top" ExpandDirection="Left">
|
|
<Rectangle Fill="#FFF4F4F5" Stroke="Black" Width="100"/>
|
|
</Expander>
|
|
|
|
</StackPanel>
|
|
|
|
<ComboBox ItemsSource="{Binding Path=Slots}"
|
|
DisplayMemberPath="Name"
|
|
SelectedValuePath="Name"
|
|
SelectedValue="{Binding Path=SlotSelected}" />
|
|
|
|
<ComboBox ItemsSource="{Binding Color, UpdateSourceTrigger=PropertyChanged}" HorizontalAlignment="Left" Height="26" Margin="61,10,0,0" VerticalAlignment="Top" Width="62"/>
|
|
<Label Content="Slot" HorizontalAlignment="Left" Height="26" Margin="14,10,0,0" VerticalAlignment="Top" Width="42"/>
|
|
<Button Content="Connect" HorizontalAlignment="Left" Height="28" Margin="137,10,0,0" VerticalAlignment="Top" Width="71"/>
|
|
<ComboBox HorizontalAlignment="Left" Height="24" Margin="628,10,0,0" VerticalAlignment="Top" Width="79"/>
|
|
<Button Content="Display active" HorizontalAlignment="Left" Height="28" Margin="226,10,0,0" VerticalAlignment="Top" Width="95"/>
|
|
<Button Content="@h" HorizontalAlignment="Left" Height="28" Margin="375,10,0,0" VerticalAlignment="Top" Width="37"/>
|
|
<Button Content="@f" HorizontalAlignment="Left" Height="28" Margin="326,10,0,0" VerticalAlignment="Top" Width="44"/>
|
|
<Button Content="@f + @h" HorizontalAlignment="Left" Height="28" Margin="459,10,0,0" VerticalAlignment="Top" Width="68"/>
|
|
<Button Content="@i" HorizontalAlignment="Left" Height="28" Margin="417,10,0,0" VerticalAlignment="Top" Width="37"/>
|
|
<Label Content="Samplerate" HorizontalAlignment="Left" Height="26" Margin="554,10,0,0" VerticalAlignment="Top" Width="76"/>
|
|
|
|
</Grid>
|
|
</Window>
|