Control.BorderBrush プロパティ
定義
コントロールの境界線の背景を表すブラシを取得または設定します。Gets or sets a brush that describes the border background of a control.
public:
property System::Windows::Media::Brush ^ BorderBrush { System::Windows::Media::Brush ^ get(); void set(System::Windows::Media::Brush ^ value); };
[System.ComponentModel.Bindable(true)]
public System.Windows.Media.Brush BorderBrush { get; set; }
[<System.ComponentModel.Bindable(true)>]
member this.BorderBrush : System.Windows.Media.Brush with get, set
Public Property BorderBrush As Brush
プロパティ値
コントロールの境界線の塗りつぶしに使用するブラシ。既定値は Transparent です。The brush that is used to fill the control's border; the default is Transparent.
- 属性
例
次の例は、コントロールの border brush プロパティを設定する方法を示しています。The following example shows how to set the border brush property of a control.
<Button Name="btn6" BorderBrush="Red"
Click="ChangeBorderBrush">
BorderBrush
</Button>
void ChangeBorderBrush(object sender, RoutedEventArgs e)
{
if (btn6.BorderBrush == Brushes.Red)
{
btn6.BorderBrush = Brushes.Black;
btn6.Content = "Control border brush changes from red to black.";
}
else
{
btn6.BorderBrush = Brushes.Red;
btn6.Content = "BorderBrush";
}
}
Private Sub ChangeBorderBrush(ByVal Sender As Object, ByVal e As RoutedEventArgs)
If (Equals(btn6.BorderBrush, Brushes.Red)) Then
btn6.BorderBrush = Brushes.Black
btn6.Content = "Control border brush changes from red to black."
Else
btn6.BorderBrush = Brushes.Red
btn6.Content = "BorderBrush"
End If
End Sub
注釈
このプロパティは、テンプレートがプロパティをパラメーターとして使用するコントロールにのみ影響 BorderBrush します。This property only affects a control whose template uses the BorderBrush property as a parameter. その他のコントロールでは、このプロパティは影響を与えません。On other controls, this property has no impact.
依存プロパティ情報Dependency Property Information
識別子フィールドIdentifier field | BorderBrushProperty |
メタデータプロパティがに設定される true Metadata properties set to true |
AffectsRender, SubPropertiesDoNotAffectRenderAffectsRender, SubPropertiesDoNotAffectRender |