using Color structures : Color « Windows Presentation Foundation « C# / C Sharp






using Color structures

using Color structures
       

<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">
        <Rectangle.Fill>
          <SolidColorBrush>
            <SolidColorBrush.Color>

              <!-- Describes the brush's color using
                    ScRGB values. Each value has a range
                    of 0-1.  -->
              <Color ScA="1.0" ScR="0.0" ScG="0.0" ScB="1.0" />
            </SolidColorBrush.Color>
          </SolidColorBrush>
        </Rectangle.Fill>
      </Rectangle>

    </Canvas>
</Window>

   
    
    
    
    
    
    
  








Related examples in the same category

1.Color AnimationColor Animation
2.Highlights the gradient origin and the gradient circle
3.Use System Color to draw LineUse System Color to draw Line
4.This text uses a gradientThis text uses a gradient
5.Diagonal Linear GradientDiagonal Linear Gradient
6.A Partially Transparent ButtonA Partially Transparent Button
7.A Radial GradientA Radial Gradient
8.A Radial Gradient with an Offset CenterA Radial Gradient with an Offset Center
9.GradientStop with Transparent colorGradientStop with Transparent color
10.Simulating lighting effects with linear fillsSimulating lighting effects with linear fills
11.Color Converter With String FormatColor Converter With String Format
12.Colors and BrushesColors and Brushes
13.From a Hex string using ColorConverterFrom a Hex string using ColorConverter
14.From ScRGB values in the Color structureFrom ScRGB values in the Color structure
15.From sRGB values in the Color strutcureFrom sRGB values in the Color strutcure
16.From predefined color name in the Colors classFrom predefined color name in the Colors class
17.Fills the polylines with a light gray colorFills the polylines with a light gray color
18.Using SystemColors in CodeUsing SystemColors in Code
19.using system colors to create gradientsusing system colors to create gradients