Files
OmagCUT/OmagCUTTestDictionary.xaml
T
Renzo Lanza bfd3f21e25 OmagCUT 2.1h1 :
- Aggiunti Dizionari per i temi e ComboBox in OptionsPageUC per il cambio dei temi. Questa versione di OmagCUT funziona esattamente come la precedente, come se non ci fossero i temi, perché la scelta dei temi è nascosta (ThemesGpBx.Visibility = Windows.Visibility.Collapsed in OptionsPageUC.xaml.vb)
2019-08-01 08:44:35 +00:00

55 lines
2.5 KiB
XML

<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:system="clr-namespace:System;assembly=mscorlib"
xmlns:EgtWPFLib="clr-namespace:EgtWPFLib;assembly=EgtWPFLib"
xmlns:project="clr-namespace:OmagCUT"
xmlns:ControlExtensions="clr-namespace:OmagCUT.ControlExtensions"
xmlns:sys="clr-namespace:System;assembly=mscorlib"
xmlns:Themes="clr-namespace:Microsoft.Windows.Themes;assembly=PresentationFramework.Aero"
xmlns:local="clr-namespace:OmagCUT.ArithmeticConverterNameSpace"
x:Class="OmagCUTTestDictionary">
<!--Importo EgtDictionary--><!--
<ResourceDictionary.MergedDictionaries>
<ResourceDictionary Source="EgtDictionary.xaml" />
</ResourceDictionary.MergedDictionaries>-->
<!--Importo EgtDictionary-->
<ResourceDictionary.MergedDictionaries>
<ResourceDictionary Source="OmagCUTDictionary.xaml" />
</ResourceDictionary.MergedDictionaries>
<system:Double x:Key="Button_CornerRadius">9.5</system:Double>
<!--2.5mm-->
<Thickness x:Key="BorderThickness">3.3</Thickness>
<SolidColorBrush x:Key="OmagCut_Gray" Color="Azure" />
<!--Button generico-->
<Style x:Key="OmagCut_Button2" TargetType="{x:Type Button}" BasedOn="{StaticResource OmagCut_Button}">
<!--<Setter Property="BorderThickness" Value="{StaticResource BorderThickness}"/>
<Setter Property="ControlExtensions:ToggleButtonExtensions.CornerRadius" Value="{StaticResource Button_CornerRadius}"/>-->
<!--<Setter Property="BorderBrush" Value="Yellow" />-->
<!--<Setter Property="Background" Value="#4A4F55"/>
<Style.Triggers>
<Trigger Property="IsMouseOver" Value="True">
<Setter Property="Background" Value="#145994"/>
</Trigger>
<Trigger Property="IsPressed" Value="True">
<Setter Property="Background" Value="#E1B957"/>
</Trigger>
<Trigger Property="ToggleButton.IsChecked" Value="True">
<Setter Property="Background" Value="#656975"/>
</Trigger>
<Trigger Property="IsEnabled" Value="False">
<Setter Property="Background" Value="#3C3F48"/>
<Setter Property="BorderBrush" Value="#FFADB2B5"/>
<Setter Property="TextElement.Foreground" Value="#FF838383"/>
</Trigger>
</Style.Triggers>-->
</Style>
</ResourceDictionary>