diff options
| author | Victoria Plitt <Victoria.Plitt@twine-s.com> | 2020-05-06 16:12:41 +0300 |
|---|---|---|
| committer | Victoria Plitt <Victoria.Plitt@twine-s.com> | 2020-05-06 16:12:41 +0300 |
| commit | 4419612a82ccf6d47e31f2a5118b8e1fe1b5271e (patch) | |
| tree | 8354e0a75024f1420bfc0fa41abfa0017a13d23c /Software/Visual_Studio/Utilities/Tango.UITests | |
| parent | f275d21b6da3b42980cc310b67a00586eb850190 (diff) | |
| download | Tango-4419612a82ccf6d47e31f2a5118b8e1fe1b5271e.tar.gz Tango-4419612a82ccf6d47e31f2a5118b8e1fe1b5271e.zip | |
Created RGBColorPicker control.
Related Work Items: #2746
Diffstat (limited to 'Software/Visual_Studio/Utilities/Tango.UITests')
| -rw-r--r-- | Software/Visual_Studio/Utilities/Tango.UITests/MainWindow.xaml | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/Software/Visual_Studio/Utilities/Tango.UITests/MainWindow.xaml b/Software/Visual_Studio/Utilities/Tango.UITests/MainWindow.xaml index c757808fd..987c5f4b0 100644 --- a/Software/Visual_Studio/Utilities/Tango.UITests/MainWindow.xaml +++ b/Software/Visual_Studio/Utilities/Tango.UITests/MainWindow.xaml @@ -13,9 +13,12 @@ <SolidColorBrush Color="{Binding ElementName=HSLPicker, Path=SelectedColor}"/> </Grid.Background> - <Border> - <colorpic:HsbColorPicker x:Name="HSLPicker" Width="320" Height="280" Background="White" Foreground="Black" BorderBrush="Gainsboro" BorderThickness="0.8"/> - </Border> + + <StackPanel VerticalAlignment="Center" Orientation="Vertical"> + <colorpic:RgbColorPicker x:Name="HSLPicker" SelectedColor="#5C3D99" Width="320" Height="280" Background="White" Foreground="Black" BorderBrush="Gainsboro" BorderThickness="0.8"/> + <TextBlock Margin="0 50 0 0" HorizontalAlignment="Center" Foreground="Gray" Text="{Binding ElementName=HSLPicker, Path=SelectedColor}" Width="Auto" FontSize="24" Height="Auto" MinHeight="40" FontWeight="DemiBold"></TextBlock> + </StackPanel> + <!--<controls:MultiSelectComboBox Width="250" Height="60" Background="White" Foreground="Black" x:Name="MSCombobox" |
