Multiple gradient stops : Color « Windows Presentation Foundation « VB.Net Tutorial






<Page xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
      xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
      HorizontalAlignment="Center" VerticalAlignment="Center">
     
        <Rectangle Width="80" Height="60">
          <Rectangle.Fill>
            <LinearGradientBrush StartPoint="0,0" EndPoint="1,1">
              <GradientStop Color="Black" Offset="0" />
              <GradientStop Color="Orange" Offset="0.2" />
              <GradientStop Color="Red" Offset="0.4" />
              <GradientStop Color="Black" Offset="0.6" />
              <GradientStop Color="Yellow" Offset="0.8" />
              <GradientStop Color="Red" Offset="1" />
            </LinearGradientBrush>
          </Rectangle.Fill>
        </Rectangle>
</Page>
WPF Multiple Gradient Stops








16.73.Color
16.73.1.A Semi-Transparent ButtonA Semi-Transparent Button
16.73.2.Use RGB valued semi-transparent color to paint EllipseUse RGB valued semi-transparent color to paint Ellipse
16.73.3.Use RGB solid color to paint EllipseUse RGB solid color to paint Ellipse
16.73.4.Rainbow color Animation by GradientStops[index].offsetRainbow color Animation by GradientStops[index].offset
16.73.5.RadialGradient StarRadialGradient Star
16.73.6.ColorConverter and SolidColorBrushColorConverter and SolidColorBrush
16.73.7.Ellipse with explicit SolidColorBrushEllipse with explicit SolidColorBrush
16.73.8.Use System Colors in Your GraphicsUse System Colors in Your Graphics
16.73.9.Use RGB color to fill RectangleUse RGB color to fill Rectangle
16.73.10.Use Named color to paint RectangleUse Named color to paint Rectangle
16.73.11.Create semi-transparent colorCreate semi-transparent color
16.73.12.Three stops LinearGradientBrushThree stops LinearGradientBrush
16.73.13.Animating Color with ColorAnimationAnimating Color with ColorAnimation
16.73.14.From a Hex string using ColorConverterFrom a Hex string using ColorConverter
16.73.15.From ScRGB values in the Color structureFrom ScRGB values in the Color structure
16.73.16.From sRGB values in the Color strutcureFrom sRGB values in the Color strutcure
16.73.17.Using a LinearGradientBrushUsing a LinearGradientBrush
16.73.18.Multiple gradient stopsMultiple gradient stops
16.73.19.Numeric color valuesNumeric color values
16.73.20.From predefined color name in the Colors classFrom predefined color name in the Colors class
16.73.21.Using SystemColors in CodeUsing SystemColors in Code
16.73.22.using system colors to create gradientsusing system colors to create gradients