aboutsummaryrefslogtreecommitdiff
path: root/ShiftOS.Wpf/Desktop.xaml
blob: 119d9df567cd39ee93e8680b0a7bd4215ebac8c7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
<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>