Gets or sets the color of the status bar's frames.
public System.Windows.Media.Color FrameColor { get; set; }
Public Property FrameColor As System.Windows.Media.Color
The following example uses the Frame
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