RGBController/RGBController2/MainWindow.xaml

44 lines
2.3 KiB
XML

<Window x:Class="RGBController2.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:RGBController2"
mc:Ignorable="d"
Title="MainWindow" Height="335" Width="700">
<Grid>
<DockPanel>
<Menu DockPanel.Dock="Top">
<MenuItem Header="_Options">
<MenuItem Header="_Flux" IsCheckable="True" IsChecked="True" />
<Separator />
<MenuItem Header="_Exit" />
</MenuItem>
<MenuItem Header="_Tabs">
<MenuItem Header="_New Tab" />
<MenuItem Header="_Delete Current Tab" />
</MenuItem>
</Menu>
</DockPanel>
<TabControl VerticalAlignment="top" HorizontalAlignment="left" Margin="0,20,0,0" Width="700" Height="300">
<TabItem Header="RGB 1">
<Grid>
<Label Content="Lighting Mode" Margin="0,5,0,0"/>
<ComboBox VerticalAlignment="top" HorizontalAlignment="left" Margin="100,5,0,0" Width="150" SelectionChanged="LightingModeSelection_SelectionChanged" x:Name="lightingModeSelectionComboBox" >
<ComboBoxItem Content="Static Colour"></ComboBoxItem>
<ComboBoxItem Content="Animations"></ComboBoxItem>
<ComboBoxItem Content="Quake Live"></ComboBoxItem>
</ComboBox>
<Label Content="Com" VerticalAlignment="top" HorizontalAlignment="left" Margin="280,5,0,0"/>
<ComboBox VerticalAlignment="top" HorizontalAlignment="left" Margin="320,5,0,0" Width="70">
</ComboBox>
<Label Content="Device Disconnected" VerticalAlignment="top" HorizontalAlignment="left" Margin="400,5,0,0"/>
<Frame Name="LightingModeFrame" VerticalAlignment="top" HorizontalAlignment="left" Margin="0,30,0,0" Width="700" Height="240" NavigationUIVisibility="Hidden"/>
</Grid>
</TabItem>
</TabControl>
</Grid>
</Window>