<Window x:Class="XHandler.View.ColorPicker.ColorPickerEx"
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
xmlns:local="clr-namespace:XHandler.View.MethodProperty"
|
xmlns:str="clr-namespace:XHandler.Properties"
|
mc:Ignorable="d" WindowStartupLocation="CenterOwner"
|
xmlns:hc="https://handyorg.github.io/handycontrol"
|
WindowStyle="None" AllowsTransparency="True" ResizeMode="NoResize" Background="#00FFFFFF" Loaded="Window_Loaded" PreviewKeyDown="Window_PreviewKeyDown">
|
|
<Grid x:Name="grid" HorizontalAlignment="Center" VerticalAlignment="Center" Width="auto" Height="auto" >
|
<Grid.RowDefinitions>
|
<RowDefinition Height="*"/>
|
</Grid.RowDefinitions>
|
|
<Border Grid.Row="0" Background="White" CornerRadius="0 0 10 10" BorderThickness="2" BorderBrush="{DynamicResource blueBrush}">
|
<Grid>
|
<Grid.RowDefinitions>
|
<RowDefinition Height="*"/>
|
</Grid.RowDefinitions>
|
|
<hc:ColorPicker Name="ColorPicker" Height="360" Margin="2"
|
Canceled="ColorPicker_Canceled" Confirmed="ColorPicker_Confirmed" />
|
|
</Grid>
|
</Border>
|
</Grid>
|
</Window>
|