diff options
Diffstat (limited to 'ShiftOS.Wpf/Desktop.xaml')
| -rw-r--r-- | ShiftOS.Wpf/Desktop.xaml | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/ShiftOS.Wpf/Desktop.xaml b/ShiftOS.Wpf/Desktop.xaml new file mode 100644 index 0000000..119d9df --- /dev/null +++ b/ShiftOS.Wpf/Desktop.xaml @@ -0,0 +1,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> |
