Fill the overline decoration with a linear gradient brush in C# : TextBlock Style « Windows Presentation Foundation « C# / CSharp Tutorial






<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="overlineTextBlock" FontSize="24" Width="180" VerticalAlignment="Center">The lazy dog</TextBlock>

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

using System;
using System.Windows;
using System.Windows.Media;

namespace TextDecorationExample
{
    public partial class Window1 : Window
    {
         private void WindowLoaded(object sender, EventArgs e)
         {
             // Fill the overline decoration with a linear gradient brush.
             TextDecorationCollection myCollection = new TextDecorationCollection();
             TextDecoration myOverline = new TextDecoration();
             myOverline.Location = TextDecorationLocation.OverLine;

             // Set the linear gradient brush.
             Pen myPen = new Pen();
             myPen.Brush = new LinearGradientBrush(Colors.LimeGreen, Colors.Yellow, 0);
             myPen.Thickness = 3;
             myOverline.Pen = myPen;
             myOverline.PenThicknessUnit = TextDecorationUnit.FontRecommended;

             // Set the overline decoration to the text block.
             myCollection.Add(myOverline);
             overlineTextBlock.TextDecorations = myCollection;
         }

    }
}
WPF Fill The Overline Decoration With A Linear Gradient Brush In C








24.8.TextBlock Style
24.8.1.Emboss TextEmboss Text
24.8.2.Engrave TextEngrave Text
24.8.3.Text Drop ShadowText Drop Shadow
24.8.4.Empirical Tilted Text ShadowEmpirical Tilted Text Shadow
24.8.5.Fill the overline decoration with a linear gradient brush in C#Fill the overline decoration with a linear gradient brush in C#
24.8.6.Fill the baseline decoration with a linear gradient brush in C#Fill the baseline decoration with a linear gradient brush in C#
24.8.7.Fill the underline decoration with a solid color brush in C#Fill the underline decoration with a solid color brush in C#
24.8.8.Fill the strikethrough decoration with a solid color brush in C#Fill the strikethrough decoration with a solid color brush in C#
24.8.9.Simple underline decorationSimple underline decoration
24.8.10.Use Run the mark underlink TextDecorationsUse Run the mark underlink TextDecorations
24.8.11.Format Text by changing the font size
24.8.12.Change font to Italic
24.8.13.Changing font to bold
24.8.14.Combine bold and italic style
24.8.15.Wrap the text