inital
This commit is contained in:
@@ -0,0 +1,29 @@
|
||||
<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
||||
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
|
||||
|
||||
<SolidColorBrush x:Key="BackgroundColor.SlimPage.MenuBar"
|
||||
Color="#1A1A1A" />
|
||||
|
||||
<!--WidgetCollection-->
|
||||
<SolidColorBrush x:Key="BackgroundColor.SlimPage.WidgetCollection"
|
||||
Color="#272727" />
|
||||
<SolidColorBrush x:Key="FontColor.SlimPage.WidgetCollection.Header"
|
||||
Color="#9B9B9B" />
|
||||
<SolidColorBrush x:Key="FontColor.SlimPage.WidgetCollection.NoTitleValue"
|
||||
Color="#9B9B9B" />
|
||||
<SolidColorBrush x:Key="FontColor.SlimPage.WidgetCollection.Title"
|
||||
Color="#9B9B9B" />
|
||||
<SolidColorBrush x:Key="FontColor.SlimPage.WidgetCollection.Value"
|
||||
Color="#575757" />
|
||||
|
||||
<!--Data History-->
|
||||
<SolidColorBrush x:Key="BackgroundColor.SlimPage.DataHistory"
|
||||
Color="#1A1A1A" />
|
||||
<SolidColorBrush x:Key="BackgroundColor.SlimPage.DataHistory.Hover"
|
||||
Color="#121212" />
|
||||
<SolidColorBrush x:Key="FontColor.SlimPage.DataHistory.OverviewTitle"
|
||||
Color="#9B9B9B" />
|
||||
<SolidColorBrush x:Key="FontColor.SlimPage.DatHistory.ColumnHeader"
|
||||
Color="#575757" />
|
||||
|
||||
</ResourceDictionary>
|
||||
@@ -0,0 +1,29 @@
|
||||
<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
||||
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
|
||||
|
||||
<SolidColorBrush x:Key="BackgroundColor.SlimPage.MenuBar"
|
||||
Color="#F7FAFA" />
|
||||
|
||||
<!--WidgetCollection-->
|
||||
<SolidColorBrush x:Key="BackgroundColor.SlimPage.WidgetCollection"
|
||||
Color="#F2F2F2" />
|
||||
<SolidColorBrush x:Key="FontColor.SlimPage.WidgetCollection.Header"
|
||||
Color="#3D3C3C" />
|
||||
<SolidColorBrush x:Key="FontColor.SlimPage.WidgetCollection.NoTitleValue"
|
||||
Color="#545454" />
|
||||
<SolidColorBrush x:Key="FontColor.SlimPage.WidgetCollection.Title"
|
||||
Color="#3D3C3C" />
|
||||
<SolidColorBrush x:Key="FontColor.SlimPage.WidgetCollection.Value"
|
||||
Color="#3D3C3C" />
|
||||
|
||||
<!--Data History-->
|
||||
<SolidColorBrush x:Key="BackgroundColor.SlimPage.DataHistory"
|
||||
Color="#F7FAFA" />
|
||||
<SolidColorBrush x:Key="BackgroundColor.SlimPage.DataHistory.Hover"
|
||||
Color="#FAFCFC" />
|
||||
<SolidColorBrush x:Key="FontColor.SlimPage.DataHistory.OverviewTitle"
|
||||
Color="#3D3C3C" />
|
||||
<SolidColorBrush x:Key="FontColor.SlimPage.DatHistory.ColumnHeader"
|
||||
Color="#6D6D6D" />
|
||||
|
||||
</ResourceDictionary>
|
||||
@@ -0,0 +1,44 @@
|
||||
<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
||||
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
|
||||
|
||||
<Style x:Key="SlimPage.DataHistory.OverviewTitle"
|
||||
TargetType="TextBlock">
|
||||
<Setter Property="FontFamily"
|
||||
Value="Calibri" />
|
||||
<Setter Property="FontWeight"
|
||||
Value="Bold" />
|
||||
<Setter Property="FontSize"
|
||||
Value="13" />
|
||||
<Setter Property="TextBlock.LineHeight"
|
||||
Value="15" />
|
||||
<Setter Property="TextBlock.LineStackingStrategy"
|
||||
Value="BlockLineHeight" />
|
||||
<Setter Property="Foreground"
|
||||
Value="{DynamicResource FontColor.SlimPage.DataHistory.OverviewTitle}" />
|
||||
|
||||
<Style.Triggers>
|
||||
<DataTrigger Binding="{Binding RelativeSource={RelativeSource AncestorType=UserControl}, Path=IsMouseOver}"
|
||||
Value="True">
|
||||
<Setter Property="Foreground"
|
||||
Value="{DynamicResource Color.FunctionMarker}" />
|
||||
</DataTrigger>
|
||||
</Style.Triggers>
|
||||
</Style>
|
||||
|
||||
<Style x:Key="SlimPage.DataHistory.ColumnHeader"
|
||||
TargetType="TextBlock">
|
||||
<Setter Property="FontFamily"
|
||||
Value="Calibri" />
|
||||
<Setter Property="FontWeight"
|
||||
Value="Regular" />
|
||||
<Setter Property="FontSize"
|
||||
Value="12" />
|
||||
<Setter Property="TextBlock.LineHeight"
|
||||
Value="14" />
|
||||
<Setter Property="TextBlock.LineStackingStrategy"
|
||||
Value="BlockLineHeight" />
|
||||
<Setter Property="Foreground"
|
||||
Value="{DynamicResource FontColor.SlimPage.DatHistory.ColumnHeader}" />
|
||||
</Style>
|
||||
|
||||
</ResourceDictionary>
|
||||
@@ -0,0 +1,125 @@
|
||||
<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
||||
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
||||
xmlns:ico="clr-namespace:FasdDesktopUi.Basics.UserControls.AdaptableIcon;assembly=F4SD-AdaptableIcon">
|
||||
|
||||
<Style x:Key="SlimPage.Widget.Header"
|
||||
TargetType="TextBlock">
|
||||
<Setter Property="FontFamily"
|
||||
Value="Calibri" />
|
||||
<Setter Property="FontWeight"
|
||||
Value="Bold" />
|
||||
<Setter Property="FontSize"
|
||||
Value="12" />
|
||||
<Setter Property="TextBlock.LineHeight"
|
||||
Value="14" />
|
||||
<Setter Property="VerticalAlignment"
|
||||
Value="Center" />
|
||||
<Setter Property="TextBlock.LineStackingStrategy"
|
||||
Value="BlockLineHeight" />
|
||||
<Setter Property="Foreground"
|
||||
Value="{DynamicResource FontColor.SlimPage.WidgetCollection.Header}" />
|
||||
<Setter Property="Cursor"
|
||||
Value="Hand" />
|
||||
|
||||
<Style.Triggers>
|
||||
<EventTrigger RoutedEvent="Control.MouseLeftButtonUp">
|
||||
<EventTrigger.Actions>
|
||||
<BeginStoryboard>
|
||||
<Storyboard>
|
||||
<DoubleAnimation From="0.4"
|
||||
Duration="0:0:1"
|
||||
FillBehavior="Stop"
|
||||
Storyboard.TargetProperty="Opacity" />
|
||||
</Storyboard>
|
||||
</BeginStoryboard>
|
||||
</EventTrigger.Actions>
|
||||
</EventTrigger>
|
||||
</Style.Triggers>
|
||||
</Style>
|
||||
|
||||
<Style x:Key="SlimPage.Widget.Header.Icon"
|
||||
TargetType="ico:AdaptableIcon">
|
||||
<Setter Property="Margin"
|
||||
Value="-7 0 0 0" />
|
||||
<Setter Property="IconBackgroundColor"
|
||||
Value="Transparent" />
|
||||
<Setter Property="HorizontalAlignment"
|
||||
Value="Center" />
|
||||
<Setter Property="IconHeight"
|
||||
Value="20" />
|
||||
<Setter Property="BorderPadding"
|
||||
Value="3" />
|
||||
<Setter Property="PrimaryIconColor"
|
||||
Value="{DynamicResource Color.Menu.Icon}" />
|
||||
</Style>
|
||||
|
||||
<Style x:Key="SlimPage.Widget.Title"
|
||||
TargetType="TextBlock">
|
||||
<Setter Property="FontFamily"
|
||||
Value="Calibri" />
|
||||
<Setter Property="FontWeight"
|
||||
Value="Regular" />
|
||||
<Setter Property="FontSize"
|
||||
Value="10" />
|
||||
<Setter Property="TextBlock.LineHeight"
|
||||
Value="16" />
|
||||
<Setter Property="TextBlock.LineStackingStrategy"
|
||||
Value="BlockLineHeight" />
|
||||
<Setter Property="IsHitTestVisible"
|
||||
Value="False" />
|
||||
<Setter Property="Foreground"
|
||||
Value="{DynamicResource FontColor.SlimPage.WidgetCollection.Title}" />
|
||||
</Style>
|
||||
|
||||
<Style x:Key="SlimPage.Widget.Value.Base"
|
||||
TargetType="TextBlock">
|
||||
<Setter Property="FontFamily"
|
||||
Value="Calibri" />
|
||||
<Setter Property="FontSize"
|
||||
Value="10" />
|
||||
<Setter Property="TextBlock.LineHeight"
|
||||
Value="16" />
|
||||
<Setter Property="TextBlock.LineStackingStrategy"
|
||||
Value="BlockLineHeight" />
|
||||
<Setter Property="Cursor"
|
||||
Value="{DynamicResource Cursor.Copy}" />
|
||||
<Setter Property="TextTrimming"
|
||||
Value="CharacterEllipsis" />
|
||||
|
||||
<Style.Triggers>
|
||||
<EventTrigger RoutedEvent="Control.MouseLeftButtonUp">
|
||||
<EventTrigger.Actions>
|
||||
<BeginStoryboard>
|
||||
<Storyboard>
|
||||
<DoubleAnimation From="0.4"
|
||||
Duration="0:0:1"
|
||||
FillBehavior="Stop"
|
||||
Storyboard.TargetProperty="Opacity" />
|
||||
</Storyboard>
|
||||
</BeginStoryboard>
|
||||
</EventTrigger.Actions>
|
||||
</EventTrigger>
|
||||
</Style.Triggers>
|
||||
</Style>
|
||||
|
||||
<Style x:Key="SlimPage.Widget.NoTitleValue"
|
||||
TargetType="TextBlock"
|
||||
BasedOn="{StaticResource SlimPage.Widget.Value.Base}">
|
||||
<Setter Property="FontWeight"
|
||||
Value="Regular" />
|
||||
<Setter Property="HorizontalAlignment"
|
||||
Value="Left" />
|
||||
<Setter Property="Foreground"
|
||||
Value="{DynamicResource FontColor.SlimPage.WidgetCollection.NoTitleValue}" />
|
||||
</Style>
|
||||
|
||||
<Style x:Key="SlimPage.Widget.Value"
|
||||
TargetType="TextBlock"
|
||||
BasedOn="{StaticResource SlimPage.Widget.Value.Base}">
|
||||
<Setter Property="FontWeight"
|
||||
Value="Bold" />
|
||||
<Setter Property="Foreground"
|
||||
Value="{DynamicResource FontColor.SlimPage.WidgetCollection.Value}" />
|
||||
</Style>
|
||||
|
||||
</ResourceDictionary>
|
||||
Reference in New Issue
Block a user