From predefined color name in the Colors class : Color « Windows Presentation Foundation « C# / C Sharp






From predefined color name in the Colors class

From predefined color name in the Colors class
  
<Window x:Class="WpfApplication1.SolidColorBrushExample"
  xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  Title="SolidColorBrush Example" Height="415" Width="270">
  <Canvas Margin="5">
    <StackPanel>
      <TextBlock Margin="0,10,0,5">
        From predefined color name in the Colors class:
      </TextBlock>
      <Rectangle x:Name="rect2" Width="100" Height="30"
        Stroke="Blue" />


    </StackPanel>
  </Canvas>
</Window>

//File:Window.xaml.cs
using System;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Shapes;


namespace WpfApplication1
{
    public partial class SolidColorBrushExample : Window
    {
        public SolidColorBrushExample()
        {
            InitializeComponent();
            SolidColorBrush brush = new SolidColorBrush();

            // From predefined color name in the Colors class: 
            brush = new SolidColorBrush(Colors.Green);
            rect2.Fill = brush;

        }

    }
}

   
    
  








Related examples in the same category

1.Color AnimationColor Animation
2.Highlights the gradient origin and the gradient circle
3.using Color structuresusing Color structures
4.Use System Color to draw LineUse System Color to draw Line
5.This text uses a gradientThis text uses a gradient
6.Diagonal Linear GradientDiagonal Linear Gradient
7.A Partially Transparent ButtonA Partially Transparent Button
8.A Radial GradientA Radial Gradient
9.A Radial Gradient with an Offset CenterA Radial Gradient with an Offset Center
10.GradientStop with Transparent colorGradientStop with Transparent color
11.Simulating lighting effects with linear fillsSimulating lighting effects with linear fills
12.Color Converter With String FormatColor Converter With String Format
13.Colors and BrushesColors and Brushes
14.From a Hex string using ColorConverterFrom a Hex string using ColorConverter
15.From ScRGB values in the Color structureFrom ScRGB values in the Color structure
16.From sRGB values in the Color strutcureFrom sRGB values in the Color strutcure
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