You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
353 B
12 lines
353 B
using System;
|
|
|
|
namespace Microsoft.Windows.Controls
|
|
{
|
|
public interface IRichTextBoxFormatBar
|
|
{
|
|
/// <summary>
|
|
/// Represents the RichTextBox that will be the target for all text manipulations in the format bar.
|
|
/// </summary>
|
|
global::System.Windows.Controls.RichTextBox Target { get; set; }
|
|
}
|
|
}
|
|
|