diff options
| author | Victoria Plitt <Victoria.Plitt@twine-s.com> | 2020-05-13 09:18:18 +0300 |
|---|---|---|
| committer | Victoria Plitt <Victoria.Plitt@twine-s.com> | 2020-05-13 09:18:18 +0300 |
| commit | c3f625ce767d98e7724379c12366205914eb840a (patch) | |
| tree | c78c1d5085aec1b4bb4032d40c09007e3ff11486 /Software/Visual_Studio/Utilities/Tango.UITests | |
| parent | 2d95bea67c4802ce6d0241f29ab2f9c20415270e (diff) | |
| download | Tango-c3f625ce767d98e7724379c12366205914eb840a.tar.gz Tango-c3f625ce767d98e7724379c12366205914eb840a.zip | |
Color picker. Added LCH Color Picker.
Related Work Items: #2746
Diffstat (limited to 'Software/Visual_Studio/Utilities/Tango.UITests')
| -rw-r--r-- | Software/Visual_Studio/Utilities/Tango.UITests/MainWindow.xaml | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/Software/Visual_Studio/Utilities/Tango.UITests/MainWindow.xaml b/Software/Visual_Studio/Utilities/Tango.UITests/MainWindow.xaml index 2188b7558..8629d842e 100644 --- a/Software/Visual_Studio/Utilities/Tango.UITests/MainWindow.xaml +++ b/Software/Visual_Studio/Utilities/Tango.UITests/MainWindow.xaml @@ -78,6 +78,21 @@ </Grid> </TabItem> + <TabItem Header="LCH" Padding="5"> + <Grid > + <Grid.Background> + <SolidColorBrush Color="{Binding ElementName=LchPicker, Path=SelectedColor}"/> + </Grid.Background> + <StackPanel VerticalAlignment="Center" Orientation="Vertical"> + <colorpic:LchColorPicker x:Name="LchPicker" L="64" C="69" H="201" Width="400" Height="400" Background="White" Foreground="Black" BorderBrush="Gainsboro" BorderThickness="0.8" ThumbHeight="18"/> + <TextBlock Margin="0 50 0 0" HorizontalAlignment="Center" Background="LightGray" Foreground="Black" Width="400" FontSize="24" Height="Auto" MinHeight="40" FontWeight="DemiBold"> + <Run Text="RGB Color: " /> + <Run Text="{Binding ElementName=LchPicker, Path=SelectedColor}"/> + </TextBlock> + </StackPanel> + </Grid> + </TabItem> + </TabControl> |
