This repository has been archived on 2025-01-01. You can view files and clone it, but cannot push or open issues or pull requests.
ShiftOS_TheReturn/ShiftOS.Wpf/Desktop.xaml
2017-01-08 09:57:10 -05:00

29 lines
1.3 KiB
XML

<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>