SolidColorBrush described using 6-digit hexadecimal notation. : SolidColorBrush « Windows Presentation Foundation « C# / CSharp Tutorial






<!--The first pair of digits describes the amount of red in the color,
the next pair describes the amount of green,
and the final two digits describes the amount of blue.
-->
            
<Window x:Class="WpfApplication1.ShapesWindow"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    Title="ShapesWindow" Height="160" Width="400">
      <Window.Resources>
        <Style TargetType="{x:Type Rectangle}">
          
          <!-- Gives all the rectangles in this panel a white stroke. -->
          <Setter Property="Stroke" Value="White"/>
          <Setter Property="StrokeThickness" Value="1"/>
        </Style>
      </Window.Resources>
    <Canvas>
      <Rectangle Width="50" Height="50" Fill="#0000FF" />

    </Canvas>
</Window>
WPF Solid Color Brush Described Using6digit Hexadecimal Notation








24.96.SolidColorBrush
24.96.1.The Color property of this rectangle's SolidColorBrush is animated.The Color property of this rectangle's SolidColorBrush is animated.
24.96.2.The Color property of the SolidColorBrush used to fill this rectangle is animatedThe Color property of the SolidColorBrush used to fill this rectangle is animated
24.96.3.The Opacity property of this rectangle's SolidColorBrush is animatedThe Opacity property of this rectangle's SolidColorBrush is animated
24.96.4.SolidColorBrush Opacity property from 1 to 0SolidColorBrush Opacity property from 1 to 0
24.96.5.SolidColorBrush objects: Brushes.Red, Brushes.MediumBlue,Brushes.Purple, and Brushes.GoldSolidColorBrush objects: Brushes.Red, Brushes.MediumBlue,Brushes.Purple, and Brushes.Gold
24.96.6.SolidColorBrush described using 3-digit hexadecimal notation: amount of red, green, and blue in the color.SolidColorBrush described using 3-digit hexadecimal notation: amount of red, green, and blue in the color.
24.96.7.SolidColorBrush described using 6-digit hexadecimal notation.SolidColorBrush described using 6-digit hexadecimal notation.
24.96.8.SolidColorBrush described using 8-digit hexadecimal notation.SolidColorBrush described using 8-digit hexadecimal notation.
24.96.9.SolidColorBrush's Color property is specified using one of the predefined colors defined by the System.Windows.Media.Colors classSolidColorBrush's Color property is specified using one of the predefined colors defined by the System.Windows.Media.Colors class
24.96.10.SolidColorBrush's color is specified using 3-digit hexadecimal notation.SolidColorBrush's color is specified using 3-digit hexadecimal notation.
24.96.11.SolidColorBrush's color is specified using 6-digit hexadecimal notation.SolidColorBrush's color is specified using 6-digit hexadecimal notation.
24.96.12.SolidColorBrush's color is specified using 8-digit hexadecimal notation.SolidColorBrush's color is specified using 8-digit hexadecimal notation.
24.96.13.Using SolidColorBrush to paint the window background