Gets or sets the color of the status bar's frames.

Syntax

public System.Windows.Media.Color FrameColor { get; set; }
Public Property FrameColor As System.Windows.Media.Color

Examples

The following example uses the FrameColor property and sets its value to Black.

TXTextControl.WPF.StatusBarColors colors = new TXTextControl.WPF.StatusBarColors();

colors.BorderStyle = TXTextControl.StatusBarBorderStyle.ColorScheme;
colors.ForeColor   = System.Windows.Media.Colors.White;
colors.FrameColor  = System.Windows.Media.Colors.Black;
Dim colors As TXTextControl.WPF.StatusBarColors = New TXTextControl.WPF.StatusBarColors()

colors.BorderStyle = TXTextControl.StatusBarBorderStyle.ColorScheme
colors.ForeColor   = System.Windows.Media.Colors.White
colors.FrameColor  = System.Windows.Media.Colors.Black