-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathHSLColorSelector.xaml
19 lines (19 loc) · 1.08 KB
/
HSLColorSelector.xaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<UserControl x:Class="WPFColorLib.HSLColorSelector" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
SizeChanged="Control_Resized">
<DockPanel>
<StackPanel DockPanel.Dock="Top">
<Slider Name="slidHue" Maximum="359" TickFrequency="10" TickPlacement="BottomRight" />
<Border Name="brdHue" BorderThickness="1" BorderBrush="DarkGray" Margin="1">
<Image Name="imgHue" Height="20" />
</Border>
</StackPanel>
<Border Name="brdSaturLight" BorderThickness="1" BorderBrush="DarkGray" Margin="1">
<Grid>
<Image Name="imgSaturLight" MinHeight="100" MouseDown="imgSaturLight_MouDown" MouseMove="imgSaturLight_MouMove" MouseUp="imgSaturLight_MouUp" />
<Canvas Name="cnvSaturLight">
<Ellipse Name="ellClrTarget" Width="7" Height="7" StrokeThickness="2" Stroke="Aqua" />
</Canvas>
</Grid>
</Border>
</DockPanel>
</UserControl>