Fill the baseline decoration with a linear gradient brush in VB : LinearGradientBrush « Windows Presentation Foundation « VB.Net Tutorial

Home
VB.Net Tutorial
1.Language Basics
2.Data Type
3.Operator
4.Statements
5.Date Time
6.Class Module
7.Development
8.Collections
9.Generics
10.Attributes
11.Event
12.LINQ
13.Stream File
14.GUI
15.GUI Applications
16.Windows Presentation Foundation
17.2D Graphics
18.I18N Internationlization
19.Reflection
20.Regular Expressions
21.Security
22.Socket Network
23.Thread
24.Windows
25.XML
26.Database ADO.net
27.Design Patterns
VB.Net
VB.Net by API
VB.Net Tutorial » Windows Presentation Foundation » LinearGradientBrush 
16.81.12.Fill the baseline decoration with a linear gradient brush in VB
<Window xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  x:Class="TextDecorationExample.Window1"
  Title="TextDecoration Example"
  Width="720"
  Height="400"
  Loaded="WindowLoaded">
  <StackPanel>

      <!-- . -->
      <TextBlock Name="baselineTextBlock" FontSize="24" Width="180" VerticalAlignment="Center">The lazy dog</TextBlock>      

  </StackPanel>
</Window>
//File:Window.xaml.vb

Imports System
Imports System.Windows
Imports System.Windows.Media

Namespace TextDecorationExample
  Public Partial Class Window1
    Inherits Window
    Private Sub WindowLoaded(sender As Object, e As EventArgs)
      ' Fill the baseline decoration with a linear gradient brush.
      Dim myCollection As New TextDecorationCollection()
      Dim myBaseline As New TextDecoration()
      myBaseline.Location = TextDecorationLocation.Baseline

      ' Set the linear gradient brush.
      Dim myPen As New Pen()
      myPen.Brush = New LinearGradientBrush(Colors.Orange, Colors.Red, 0)
      myPen.Thickness = 3
      myBaseline.Pen = myPen
      myBaseline.PenThicknessUnit = TextDecorationUnit.FontRecommended

      ' Set the baseline decoration to the text block.
      myCollection.Add(myBaseline)
      baselineTextBlock.TextDecorations = myCollection
    End Sub

  End Class
End Namespace
WPF Fill The Baseline Decoration With A Linear Gradient Brush In C
16.81.LinearGradientBrush
16.81.1.LinearGradientBrush for Rectangle.StrokeLinearGradientBrush for Rectangle.Stroke
16.81.2.LinearGradientBrush animationLinearGradientBrush animation
16.81.3.LinearGradientBrush ExamplesLinearGradientBrush Examples
16.81.4.Text Box with LinearGradientBrushText Box with LinearGradientBrush
16.81.5.Fill with diagonal LinearGradientBrushFill with diagonal LinearGradientBrush
16.81.6.Rectangle with LinearGradientBrushRectangle with LinearGradientBrush
16.81.7.LinearGradientBrush.RelativeTransformLinearGradientBrush.RelativeTransform
16.81.8.LinearGradientBrush.Transform RotateTransformLinearGradientBrush.Transform RotateTransform
16.81.9.LinearGradientBrush With 0.5 Offset for WhiteLinearGradientBrush With 0.5 Offset for White
16.81.10.Stroke with horizontal multi-color LinearGradientBrushStroke with horizontal multi-color LinearGradientBrush
16.81.11.Fill the overline decoration with a linear gradient brush in VBFill the overline decoration with a linear gradient brush in VB
16.81.12.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.