diff options
| author | Michael <[email protected]> | 2017-02-13 09:05:25 -0500 |
|---|---|---|
| committer | Michael <[email protected]> | 2017-02-13 09:05:25 -0500 |
| commit | e8dfafa17a492bdba99151379d5d4926c267dde5 (patch) | |
| tree | bdc21f8c028e03f987920d581c0aaad3b1168938 /ShiftOS.Wpf/App.xaml | |
| parent | 14bd25bab6dbed116c194d392e887c68a90c4d73 (diff) | |
| download | shiftos_thereturn-e8dfafa17a492bdba99151379d5d4926c267dde5.tar.gz shiftos_thereturn-e8dfafa17a492bdba99151379d5d4926c267dde5.tar.bz2 shiftos_thereturn-e8dfafa17a492bdba99151379d5d4926c267dde5.zip | |
ugh more debugging
Diffstat (limited to 'ShiftOS.Wpf/App.xaml')
| -rw-r--r-- | ShiftOS.Wpf/App.xaml | 60 |
1 files changed, 0 insertions, 60 deletions
diff --git a/ShiftOS.Wpf/App.xaml b/ShiftOS.Wpf/App.xaml deleted file mode 100644 index c958acd..0000000 --- a/ShiftOS.Wpf/App.xaml +++ /dev/null @@ -1,60 +0,0 @@ -<Application x:Class="ShiftOS.Wpf.App" - xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" - xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" - xmlns:local="clr-namespace:ShiftOS.Wpf" - xmlns:sys="clr-namespace:System;assembly=mscorlib" - StartupUri="Desktop.xaml" - Startup="Application_Startup" - Exit="Application_Exit"> - - <Application.Resources> - <SolidColorBrush x:Key="desktoppanelbg" Color="Gray"></SolidColorBrush> - <sys:Double x:Key="desktoppanelheight">24</sys:Double> - <VerticalAlignment x:Key="desktoppanelpos">Bottom</VerticalAlignment> - <ObjectDataProvider x:Key="desktopbackground" ObjectType="{x:Type local:SkinFrontend}" MethodName="GetDesktopBrush"></ObjectDataProvider> - <Binding ElementName="This" Source="{StaticResource desktopbackground}" Path="" UpdateSourceTrigger="PropertyChanged" x:Key="desktopbackgroundbind"></Binding> - - <Style x:Key="ShiftedListBox" TargetType="ListBox"> - <Setter Property="Padding" Value="5"/> - <Setter Property="Background" Value="{DynamicResource TerminalBG}"/> - <Setter Property="Foreground" Value="{DynamicResource TerminalFG}"/> - - </Style> - - <Style TargetType="WrapPanel" x:Key="Toolbar"> - <Setter Property="Background" Value="{DynamicResource MenuBG}"></Setter> - </Style> - - <Style TargetType="Button" x:Key="ToolbarButton"> - <Style.Triggers> - <Trigger Property="IsPressed" Value="True"> - <Setter Property="Background" Value="{DynamicResource MenuItemPressed}"></Setter> - <Setter Property="Foreground" Value="{DynamicResource MenuItemPressedText}"></Setter> - </Trigger> - - - </Style.Triggers> - <Setter Property="Width" Value="Auto"></Setter> - <Setter Property="Height" Value="Auto"></Setter> - <Setter Property="BorderThickness" Value="0"></Setter> - <Setter Property="FocusVisualStyle"> - <Setter.Value> - <Style TargetType="Button"> - <Setter Property="Background" Value="{DynamicResource MenuItemHover}"></Setter> - <Setter Property="Foreground" Value="{DynamicResource MenuItemHoverText}"></Setter> - </Style> - </Setter.Value> - </Setter> - <Setter Property="Visibility" Value="Visible"></Setter> - <Setter Property="Margin" Value="3"></Setter> - <Setter Property="Background" Value="{DynamicResource MenuItem}"></Setter> - <Setter Property="Foreground" Value="{DynamicResource MenuItemText}"></Setter> - - </Style> - - <Style TargetType="ListBox"> - <Setter Property="Background" Value="{DynamicResource TerminalBG}"></Setter> - <Setter Property="Foreground" Value="{DynamicResource TerminalFG}"></Setter> - </Style> - </Application.Resources> -</Application> |
