You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
1.1 KiB
24 lines
1.1 KiB
<Window x:Class="WhackerLinkConsoleV2.MainWindow"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:local="clr-namespace:WhackerLinkConsoleV2.Controls"
|
|
Title="WhackerLinkConsoleV2" Height="600" Width="1000" Background="#1e1e1e">
|
|
<Grid>
|
|
<!-- Menu Bar -->
|
|
<Menu VerticalAlignment="Top" Height="25">
|
|
<MenuItem Header="File">
|
|
<MenuItem Header="Open Codeplug" Click="OpenCodeplug_Click"/>
|
|
</MenuItem>
|
|
<MenuItem Header="Edit">
|
|
<!-- Toggle button for enabling/disabling edit mode -->
|
|
<MenuItem Header="Enable Edit Mode" Click="ToggleEditMode_Click"/>
|
|
<MenuItem Header="Select Widgets to Display" Click="SelectWidgets_Click"/>
|
|
<MenuItem Header="Reset Settings" Click="ResetSettings_Click"/>
|
|
</MenuItem>
|
|
</Menu>
|
|
|
|
<!-- Main Layout with Canvas to hold ChannelBoxes -->
|
|
<Canvas x:Name="ChannelsCanvas" Margin="0,25,0,0" Background="#1e1e1e" />
|
|
</Grid>
|
|
</Window>
|