Browse Source

RichTextBoxFormatBar: fixed color indicator on font color picker

pull/1645/head
brianlagunas_cp 15 years ago
parent
commit
381eb5d1d4
  1. 6
      ExtendedWPFToolkitSolution/Src/WPFToolkit.Extended/RichTextBoxFormatBar/RichTextBoxFormatBar.xaml

6
ExtendedWPFToolkitSolution/Src/WPFToolkit.Extended/RichTextBoxFormatBar/RichTextBoxFormatBar.xaml

@ -171,7 +171,11 @@
<Grid>
<Image Source="/WPFToolkit.Extended;component/RichTextBoxFormatBar/Images/FontColorPicker16.png" Width="16" Height="16" />
<Rectangle Grid.Row="1" Fill="{TemplateBinding Background}" Height="4" Margin="0,12,0,0" />
<Rectangle Grid.Row="1" Height="4" Margin="0,12,0,0">
<Rectangle.Fill>
<SolidColorBrush Color="{Binding SelectedColor, RelativeSource={RelativeSource Mode=FindAncestor, AncestorType=extToolkit:ColorPicker}}" />
</Rectangle.Fill>
</Rectangle>
</Grid>
<Path Grid.Column="1" Width="7" Height="4"

Loading…
Cancel
Save