Fill the strikethrough decoration with a solid color 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="strikethroughTextBlock" 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 solid color brush.
             TextDecorationCollection myCollection = new TextDecorationCollection();
             TextDecoration myStrikeThrough = new TextDecoration();
             myStrikeThrough.Location = TextDecorationLocation.Strikethrough;

             // Set the solid color brush.
             myStrikeThrough.Pen = new Pen(Brushes.Blue, 1);
             myStrikeThrough.PenThicknessUnit = TextDecorationUnit.FontRecommended;

             // Set the underline decoration to the text block.
             myCollection.Add(myStrikeThrough);
             strikethroughTextBlock.TextDecorations = myCollection;
         }

    }
}
WPF Fill The Strikethrough Decoration With A Solid Color 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