Stroke with horizontal multi-color LinearGradientBrush : LinearGradientBrush « Windows Presentation Foundation « VB.Net

Home
VB.Net
1.2D
2.Application
3.Class
4.Data Structure
5.Data Types
6.Database ADO.net
7.Development
8.Event
9.File Directory
10.Generics
11.GUI
12.Language Basics
13.LINQ
14.Network Remote
15.Security
16.Thread
17.Windows Presentation Foundation
18.Windows System
19.XML
20.XML LINQ
VB.Net Tutorial
VB.Net by API
VB.Net » Windows Presentation Foundation » LinearGradientBrushScreenshots 
Stroke with horizontal multi-color LinearGradientBrush
Stroke with horizontal multi-color LinearGradientBrush
     

<Window x:Class="WpfApplication1.Window1"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    Title="WPF" Height="300" Width="300">
    <Canvas Margin="5">
        <!--Stroke with horizontal multi-color LinearGradientBrush-->
        <Line X1="20" X2="280" Y1="240" Y2="240" StrokeThickness="30">
            <Line.Stroke>
                <LinearGradientBrush StartPoint="0,0.5" EndPoint="1,0.5">
                    <GradientStop Color="Red" Offset="0.15" />
                    <GradientStop Color="Orange" Offset="0.2" />
                    <GradientStop Color="Yellow" Offset="0.35" />
                    <GradientStop Color="Green" Offset="0.5" />
                    <GradientStop Color="Blue" Offset="0.65" />
                    <GradientStop Color="Indigo" Offset="0.75" />
                    <GradientStop Color="Violet" Offset="0.9" />
                </LinearGradientBrush>
            </Line.Stroke>
        </Line>
    </Canvas>
</Window>

   
    
    
    
    
  
Related examples in the same category
1.LinearGradientBrush for Rectangle.StrokeLinearGradientBrush for Rectangle.Stroke
2.LinearGradientBrush animationLinearGradientBrush animation
3.LinearGradientBrush ExamplesLinearGradientBrush Examples
4.Text Box with LinearGradientBrushText Box with LinearGradientBrush
5.Fill with diagonal LinearGradientBrushFill with diagonal LinearGradientBrush
6.Rectangle with LinearGradientBrush
7.LinearGradientBrush.RelativeTransformLinearGradientBrush.RelativeTransform
8.LinearGradientBrush.Transform RotateTransformLinearGradientBrush.Transform RotateTransform
9.LinearGradientBrush With 0.5 Offset for WhiteLinearGradientBrush With 0.5 Offset for White
10.Fill the overline decoration with a linear gradient brush in VBFill the overline decoration with a linear gradient brush in VB
11.Fill the baseline decoration with a linear gradient brush in VBFill the baseline decoration with a linear gradient brush in VB
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.