Files
MetroGauges-Old/MetroGauges/PaletteSelector.xaml
2026-02-23 17:02:55 +08:00

134 lines
6.9 KiB
XML

<UserControl
x:Class="MetroGauges.Controls.PaletteSelector"
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:local="clr-namespace:MetroGauges"
xmlns:materialDesignColors="clr-namespace:MaterialDesignColors;assembly=MaterialDesignColors"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:mgControls="clr-namespace:MetroGauges.Controls"
xmlns:wpf="clr-namespace:MaterialDesignThemes.Wpf;assembly=MaterialDesignThemes.Wpf"
d:DataContext="{d:DesignInstance mgControls:PaletteSelectorViewModel,
IsDesignTimeCreatable=False}"
d:DesignHeight="450"
d:DesignWidth="800"
mc:Ignorable="d">
<UserControl.Resources>
<BooleanToVisibilityConverter x:Key="BooleanToVisibilityConverter"/>
<Style BasedOn="{StaticResource MaterialDesignFlatButton}" TargetType="Button">
<Setter Property="Margin" Value="0"/>
<Setter Property="CommandParameter" Value="{Binding}"/>
<Setter Property="VerticalAlignment" Value="Stretch"/>
<Setter Property="HorizontalAlignment" Value="Stretch"/>
<Setter Property="Foreground">
<Setter.Value>
<SolidColorBrush Color="{Binding ExemplarHue.Foreground, Mode=OneTime}"/>
</Setter.Value>
</Setter>
</Style>
<Style x:Key="PalettePath" TargetType="Path">
<Setter Property="Data" Value="M17.5,12A1.5,1.5 0 0,1 16,10.5A1.5,1.5 0 0,1 17.5,9A1.5,1.5 0 0,1 19,10.5A1.5,1.5 0 0,1 17.5,12M14.5,8A1.5,1.5 0 0,1 13,6.5A1.5,1.5 0 0,1 14.5,5A1.5,1.5 0 0,1 16,6.5A1.5,1.5 0 0,1 14.5,8M9.5,8A1.5,1.5 0 0,1 8,6.5A1.5,1.5 0 0,1 9.5,5A1.5,1.5 0 0,1 11,6.5A1.5,1.5 0 0,1 9.5,8M6.5,12A1.5,1.5 0 0,1 5,10.5A1.5,1.5 0 0,1 6.5,9A1.5,1.5 0 0,1 8,10.5A1.5,1.5 0 0,1 6.5,12M12,3A9,9 0 0,0 3,12A9,9 0 0,0 12,21A1.5,1.5 0 0,0 13.5,19.5C13.5,19.11 13.35,18.76 13.11,18.5C12.88,18.23 12.73,17.88 12.73,17.5A1.5,1.5 0 0,1 14.23,16H16A5,5 0 0,0 21,11C21,6.58 16.97,3 12,3Z"/>
<Setter Property="Fill">
<Setter.Value>
<SolidColorBrush Color="{Binding ExemplarHue.Foreground, Mode=OneTime}"/>
</Setter.Value>
</Setter>
</Style>
<DataTemplate DataType="{x:Type materialDesignColors:Swatch}">
<wpf:Card Width="240" Margin="4">
<Grid>
<Grid.RowDefinitions>
<RowDefinition Height="Auto"/>
<RowDefinition Height="Auto"/>
</Grid.RowDefinitions>
<Grid.ColumnDefinitions>
<ColumnDefinition Width="*"/>
<ColumnDefinition Width="Auto"/>
</Grid.ColumnDefinitions>
<!--<TextBlock Grid.ColumnSpan="2" Margin="8" Text="{Binding Name}"/>-->
<Border
Grid.Row="1"
Grid.Column="0"
MinWidth="120">
<Border.Background>
<SolidColorBrush Color="{Binding ExemplarHue.Color, Mode=OneTime}"/>
</Border.Background>
<Button Command="{Binding RelativeSource={RelativeSource FindAncestor, AncestorType={x:Type mgControls:PaletteSelector}}, Path=DataContext.ApplyPrimaryCommand, Mode=OneTime}" CommandParameter="{Binding}">
<StackPanel Orientation="Horizontal">
<TextBlock Text="基础色"/>
<Viewbox Width="16" Height="16">
<Canvas Width="24" Height="24">
<Path Style="{StaticResource PalettePath}"/>
</Canvas>
</Viewbox>
</StackPanel>
</Button>
</Border>
<Border
Grid.Row="1"
Grid.Column="1"
Width="120"
Visibility="{Binding IsAccented, Converter={StaticResource BooleanToVisibilityConverter}, Mode=OneTime}">
<Border.Background>
<SolidColorBrush Color="{Binding AccentExemplarHue.Color, Mode=OneTime}"/>
</Border.Background>
<Button Command="{Binding RelativeSource={RelativeSource FindAncestor, AncestorType={x:Type mgControls:PaletteSelector}}, Path=DataContext.ApplyAccentCommand, Mode=OneTime}" CommandParameter="{Binding}">
<StackPanel Orientation="Horizontal">
<TextBlock Text="强调色"/>
<Viewbox Width="16" Height="16">
<Canvas Width="24" Height="24">
<Path Style="{StaticResource PalettePath}"/>
</Canvas>
</Viewbox>
</StackPanel>
</Button>
</Border>
</Grid>
</wpf:Card>
</DataTemplate>
</UserControl.Resources>
<Grid>
<Grid.RowDefinitions>
<RowDefinition Height="Auto"/>
<RowDefinition Height="*"/>
</Grid.RowDefinitions>
<Grid Margin="16,0,0,4" HorizontalAlignment="Left">
<Grid.RowDefinitions>
<RowDefinition/>
<RowDefinition/>
</Grid.RowDefinitions>
<Grid.ColumnDefinitions>
<ColumnDefinition/>
<ColumnDefinition/>
<ColumnDefinition/>
</Grid.ColumnDefinitions>
<TextBlock Grid.Row="1" VerticalAlignment="Center"></TextBlock>
<ToggleButton
x:Name="Intensity"
Grid.Row="1"
Grid.Column="1"
Margin="8,4,16,4"
Command="{Binding ToggleBaseCommand}"
CommandParameter="{Binding RelativeSource={RelativeSource Self}, Path=IsChecked}"/>
<TextBlock
Grid.Row="1"
Grid.Column="2"
VerticalAlignment="Center">
</TextBlock>
</Grid>
<ScrollViewer
Grid.Row="1"
HorizontalScrollBarVisibility="Disabled"
VerticalScrollBarVisibility="Auto">
<ItemsControl ItemsSource="{Binding Swatches, Mode=OneTime}">
<ItemsControl.ItemsPanel>
<ItemsPanelTemplate>
<WrapPanel/>
</ItemsPanelTemplate>
</ItemsControl.ItemsPanel>
</ItemsControl>
</ScrollViewer>
</Grid>
</UserControl>