UcRotaryPanelStyle.xaml 11.1 KB
<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
                    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
                    xmlns:local="clr-namespace:FLY.Integrated.UI.Client.UIModule"
                    xmlns:sys="clr-namespace:System;assembly=mscorlib"
                                 xmlns:iconPacks="http://metro.mahapps.com/winfx/xaml/iconpacks"
             xmlns:flyctrl="clr-namespace:FLY.ControlLibrary;assembly=FLY.ControlLibrary">
    <ResourceDictionary.MergedDictionaries>
        <ResourceDictionary Source="pack://application:,,,/FLY.Integrated.UI.Client;component/Themes/Styles.xaml"/>
    </ResourceDictionary.MergedDictionaries>
    <sys:Double x:Key="FontSize_title">18</sys:Double>
    <sys:Double x:Key="FontSize_unit">12</sys:Double>
    <sys:Double x:Key="FontSize_context_min">32</sys:Double>
    <sys:Double x:Key="FontSize_context_max">48</sys:Double>
    <sys:Double x:Key="MaxHeight_viewer1">130</sys:Double>


    <Style TargetType="flyctrl:NoToggleButton" x:Key="ButonStyle_rOn" >
        <Setter Property="Margin" Value="{StaticResource ControlMargin}"/>
        <Setter Property="HorizontalContentAlignment" Value="Center"/>
        <Setter Property="VerticalContentAlignment" Value="Center"/>
        <Setter Property="Padding" Value="1"/>
        <Setter Property="OffBrush" Value="{StaticResource ValidationSummaryColor5}" />
        <Setter Property="OnBrush" Value="{StaticResource AccentColorBrush}" />
        <Setter Property="OffLabel" Value="停止中" />
        <Setter Property="OnLabel" Value="运行中" />
        <Setter Property="Template">
            <Setter.Value>
                <ControlTemplate TargetType="flyctrl:NoToggleButton">
                    <Border Background="Transparent">
                        <Grid x:Name="grid" Style="{StaticResource GridStyle_ButtonShadow}" >
                            <Ellipse Stretch="Uniform" Fill="{StaticResource WhiteBrush}" Margin="2" />
                            <iconPacks:PackIconMaterial x:Name="icon" Kind="StopCircle" Foreground="{TemplateBinding OffBrush}" Width="50" Height="{Binding RelativeSource={RelativeSource Mode=Self},Path=Width}"/>
                            <TextBlock x:Name="tbOnOff" Margin="0,0,0,-10" Padding="2" Foreground="{StaticResource WhiteBrush}" FontSize="15" VerticalAlignment="Bottom" HorizontalAlignment="Center" 
                                   Background="{TemplateBinding OffBrush}" 
                                   Text="{TemplateBinding OffLabel}"/>
                        </Grid>
                    </Border>
                    <ControlTemplate.Triggers>
                        <Trigger Property="IsChecked" Value="True">
                            <Setter TargetName="icon" Property="Foreground" Value="{Binding OnBrush,RelativeSource={RelativeSource Mode=TemplatedParent}}"/>
                            <Setter TargetName="icon" Property="Kind" Value="PlayCircle"/>

                            <Setter TargetName="tbOnOff" Property="Text" Value="{Binding OnLabel,RelativeSource={RelativeSource Mode=TemplatedParent}}"/>
                            <Setter TargetName="tbOnOff" Property="Background" Value="{Binding OnBrush,RelativeSource={RelativeSource Mode=TemplatedParent}}"/>
                        </Trigger>
                        <Trigger Property="IsPressed" Value="true">
                            <Setter TargetName="icon" Property="Width" Value="46"/>
                            <Setter TargetName="grid" Property="Margin" Value="2"/>
                            <Setter TargetName="grid" Property="Effect" Value="{x:Null}" />
                            <Setter Property="Opacity" Value="1"/>
                        </Trigger>
                        <Trigger Property="IsMouseOver" Value="True">
                            <Setter Property="Opacity" Value="0.7"/>
                        </Trigger>
                    </ControlTemplate.Triggers>
                </ControlTemplate>
            </Setter.Value>
        </Setter>
    </Style>

    <Style TargetType="flyctrl:NoToggleButton" x:Key="ButonStyle_rOrg" >
        <Setter Property="Margin" Value="{StaticResource ControlMargin}"/>
        <Setter Property="HorizontalContentAlignment" Value="Center"/>
        <Setter Property="VerticalContentAlignment" Value="Center"/>
        <Setter Property="Padding" Value="1"/>
        <Setter Property="OffBrush" Value="{StaticResource GrayBrush1}" />
        <Setter Property="OnBrush" Value="{StaticResource AccentColorBrush}" />
        <Setter Property="OffLabel" Value="复位" />
        <Setter Property="OnLabel" Value="复位中" />
        <Setter Property="Template">
            <Setter.Value>
                <ControlTemplate TargetType="flyctrl:NoToggleButton">
                    <Border Background="Transparent">
                        <Grid x:Name="grid" Style="{StaticResource GridStyle_ButtonShadow}" >
                            <Ellipse Stretch="Uniform" Fill="{StaticResource GrayBrush10}" Margin="2" Width="40" Height="{Binding RelativeSource={RelativeSource Mode=Self},Path=Width}"/>
                            <iconPacks:PackIconMaterial x:Name="icon" Kind="Bullseye" Foreground="{TemplateBinding OffBrush}" Width="50" Height="{Binding RelativeSource={RelativeSource Mode=Self},Path=Width}"/>
                            <TextBlock x:Name="tbOnOff" Margin="0,0,0,-10" Padding="2" Foreground="{StaticResource WhiteBrush}" FontSize="15" VerticalAlignment="Bottom" HorizontalAlignment="Center" 
                                   Background="{TemplateBinding OffBrush}" 
                                   Text="{TemplateBinding OffLabel}"/>
                        </Grid>
                    </Border>
                    <ControlTemplate.Triggers>
                        <Trigger Property="IsChecked" Value="True">
                            <Setter TargetName="icon" Property="Foreground" Value="{Binding OnBrush,RelativeSource={RelativeSource Mode=TemplatedParent}}"/>
                            <Setter TargetName="tbOnOff" Property="Text" Value="{Binding OnLabel,RelativeSource={RelativeSource Mode=TemplatedParent}}"/>
                            <Setter TargetName="tbOnOff" Property="Background" Value="{Binding OnBrush,RelativeSource={RelativeSource Mode=TemplatedParent}}"/>
                        </Trigger>
                        <Trigger Property="IsPressed" Value="true">
                            <Setter TargetName="icon" Property="Width" Value="46"/>
                            <Setter TargetName="grid" Property="Margin" Value="2"/>
                            <Setter TargetName="grid" Property="Effect" Value="{x:Null}" />
                            <Setter Property="Opacity" Value="1"/>
                        </Trigger>
                        <Trigger Property="IsMouseOver" Value="True">
                            <Setter Property="Opacity" Value="0.7"/>
                        </Trigger>
                    </ControlTemplate.Triggers>
                </ControlTemplate>
            </Setter.Value>
        </Setter>
    </Style>

    <Style TargetType="flyctrl:NoToggleButton" x:Key="NoToggleButtonStyle_light" >
        <Setter Property="Margin" Value="0"/>
        <Setter Property="HorizontalContentAlignment" Value="Center"/>
        <Setter Property="VerticalContentAlignment" Value="Center"/>
        <Setter Property="Padding" Value="1"/>
        <Setter Property="OffBrush" Value="{StaticResource GrayBrush1}" />
        <Setter Property="OnBrush" Value="{StaticResource AccentColorBrush2}" />
        <Setter Property="IsEnabled" Value="False" />
        <Setter Property="OnLabel" Value="{Binding Content,RelativeSource={RelativeSource Mode=Self}}"/>
        <Setter Property="OffLabel" Value="{Binding Content,RelativeSource={RelativeSource Mode=Self}}"/>
        <Setter Property="Template">
            <Setter.Value>
                <ControlTemplate TargetType="flyctrl:NoToggleButton">
                    <StackPanel Orientation="Horizontal">
                        <iconPacks:PackIconMaterial x:Name="icon" Kind="CircleOutline" Width="30" Height="{Binding Width,RelativeSource={RelativeSource Mode=Self}}" Margin="2" Foreground="{TemplateBinding OffBrush}"/>
                        <TextBlock x:Name="tbOnOff" Text="{TemplateBinding OffLabel}" Style="{StaticResource TextBlockStyle_FieldHeader}" Foreground="{StaticResource TextBrush}" FontSize="{StaticResource FontSize_title}"/>
                    </StackPanel>

                    <ControlTemplate.Triggers>
                        <Trigger Property="IsChecked" Value="True">
                            <Setter TargetName="icon" Property="Foreground" Value="{Binding OnBrush,RelativeSource={RelativeSource Mode=TemplatedParent}}"/>
                            <Setter TargetName="icon" Property="Kind" Value="CircleSlice8"/>
                            <Setter TargetName="tbOnOff" Property="Text" Value="{Binding OnLabel,RelativeSource={RelativeSource Mode=TemplatedParent}}"/>
                        </Trigger>
                    </ControlTemplate.Triggers>
                </ControlTemplate>
            </Setter.Value>
        </Setter>
    </Style>


    
    <Style TargetType="Button" x:Key="ButtonStyle_resizeIcon">
        <Style.Resources>
            <Style TargetType="iconPacks:PackIconMaterial">
                <Setter Property="Width" Value="auto"/>
                <Setter Property="Height" Value="auto"/>
                <Setter Property="HorizontalAlignment" Value="Center"/>
                <Setter Property="VerticalAlignment" Value="Center"/>
            </Style>
        </Style.Resources>
        <Setter Property="Foreground" Value="{StaticResource GrayBrush1}"/>
        <Setter Property="Template">
            <Setter.Value>
                <ControlTemplate TargetType="{x:Type Button}">
                    <Border Background="Transparent">
                        <Grid x:Name="grid" Style="{StaticResource GridStyle_ButtonShadow}">
                            <ContentPresenter x:Name="path" RecognizesAccessKey="True" SnapsToDevicePixels="{TemplateBinding SnapsToDevicePixels}" 
                                              Width="50" Height="{Binding RelativeSource={RelativeSource Mode=Self},Path=Width}"
                                              HorizontalAlignment="Center" VerticalAlignment="Center" />
                        </Grid>
                    </Border>
                    <ControlTemplate.Triggers>
                        <Trigger Property="IsMouseOver" Value="True">
                            <Setter Property="Opacity" Value="0.7"/>
                        </Trigger>
                        <Trigger Property="IsPressed" Value="True">
                            <Setter TargetName="path" Property="Width" Value="46"/>
                            <Setter TargetName="grid" Property="Margin" Value="2"/>
                            <Setter Property="Foreground" Value="{StaticResource AccentColorBrush}"/>
                            <Setter TargetName="grid" Property="Effect" Value="{x:Null}" />
                        </Trigger>
                    </ControlTemplate.Triggers>
                </ControlTemplate>
            </Setter.Value>
        </Setter>

    </Style>
</ResourceDictionary>