Fill the baseline decoration with a linear gradient brush in VB : 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.Date Time
8.Development
9.Event
10.File Directory
11.Generics
12.GUI
13.Internationalization I18N
14.Language Basics
15.LINQ
16.Network Remote
17.Reflection
18.Security
19.Thread
20.Windows Presentation Foundation
21.Windows System
22.XML
23.XML LINQ
VB.Net » Windows Presentation Foundation » LinearGradientBrushScreenshots 
Fill the baseline decoration with a linear gradient brush in VB
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

   
    
    
  
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.Stroke with horizontal multi-color LinearGradientBrushStroke with horizontal multi-color LinearGradientBrush
11.Fill the overline decoration with a linear gradient brush in VBFill the overline decoration with a linear gradient brush in VB
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.