<Window x:Class="ShiftOS.Wpf.Desktop"
        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:ShiftOS.Wpf"
        mc:Ignorable="d"
        Title="Desktop" Height="720" Width="1280"
        WindowStyle="None" ResizeMode="NoResize" Topmost="True" WindowState="Maximized"
        Loaded="Window_Loaded">
    <DockPanel>
        <Canvas DockPanel.Dock="Top" Background="{DynamicResource desktoppanelbg}" Name="desktoppanel" Height="{DynamicResource desktoppanelheight}" HorizontalAlignment="Stretch" VerticalAlignment="{DynamicResource desktoppanelpos}">
            

            <Button Click="apps_Click" Width="100" Height="24" Name="apps">
                <TextBlock Text="Applications">
                    
                </TextBlock>
            </Button>
    </Canvas>

        <Canvas x:Name="windowlayer" Background="Black">
            <StackPanel x:Name="appsmenu" Canvas.Left="0" Canvas.Top="0" Background="White" Width="100" Visibility="Hidden"></StackPanel>
        </Canvas>
        
    </DockPanel>

       
</Window>