TextBoxBase.SelectionBrush プロパティ
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
選択されているテキストを強調表示するブラシを取得または設定します。
public:
property System::Windows::Media::Brush ^ SelectionBrush { System::Windows::Media::Brush ^ get(); void set(System::Windows::Media::Brush ^ value); };
public System.Windows.Media.Brush SelectionBrush { get; set; }
member this.SelectionBrush : System.Windows.Media.Brush with get, set
Public Property SelectionBrush As Brush
プロパティ値
選択されているテキストを強調表示するブラシ。
例
次の例では、 を TextBox 作成し、"This is some text" というテキストを追加します。この例では、 プロパティを SelectionBrush 赤に設定し、 プロパティを SelectionOpacity 0.5 に設定して、選択したテキストの外観をカスタマイズします。
<TextBox SelectionBrush="Red" SelectionOpacity="0.5"
Foreground="Blue" CaretBrush="Blue">
This is some text.
</TextBox>
次の図は、前の例の テキスト TextBox が選択されている を示しています。
赤
SelectionBrush が赤に設定されているテキスト ボックス内の選択されたテキスト
注釈
プロパティと SelectionOpacity プロパティを設定することで、選択したテキストを強調表示するブラシをSelectionBrush指定できます。 プロパティは SelectionOpacity 、 の不透明度を指定します SelectionBrush。
適用対象
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
.NET