Control.BorderThickness
Control.BorderThickness
Control.BorderThickness
Control.BorderThickness
Property
定義
コントロールの境界線の太さを取得または設定します。Gets or sets the border thickness of a control.
public:
property System::Windows::Thickness BorderThickness { System::Windows::Thickness get(); void set(System::Windows::Thickness value); };
[System.ComponentModel.Bindable(true)]
public System.Windows.Thickness BorderThickness { get; set; }
member this.BorderThickness : System.Windows.Thickness with get, set
Public Property BorderThickness As Thickness
プロパティ値
太さの値。既定値は、4 辺すべてにつき 0 です。A thickness value; the default is a thickness of 0 on all four sides.
例
次の例では、コントロールの境界線の太さのプロパティを設定する方法を示します。The following example shows how to set the border thickness property of a control.
<Button Name="btn9" BorderThickness="5.0"
Click="ChangeBorderThickness" TabIndex="2">
BorderThickness
</Button>
void ChangeBorderThickness(object sender, RoutedEventArgs e)
{
if (btn9.BorderThickness.Left == 5.0)
{
btn9.BorderThickness = new Thickness(2.0);
btn9.Content = "Control BorderThickness changes from 5 to 2.";
}
else
{
btn9.BorderThickness = new Thickness(5.0);
btn9.Content = "BorderThickness";
}
}
Private Sub ChangeBorderThickness(ByVal Sender As Object, ByVal e As RoutedEventArgs)
If (btn9.BorderThickness.Left = 5.0) Then
btn9.BorderThickness = New Thickness(2.0)
btn9.Content = "Control BorderThickness changes from 5 to 2."
Else
btn9.BorderThickness = New Thickness(5.0)
btn9.Content = "BorderThickness"
End If
End Sub
注釈
このプロパティでは、そのテンプレートを使用してコントロールのみに影響、BorderThicknessプロパティをパラメーターとして。This property only affects a control whose template uses the BorderThickness property as a parameter. その他のコントロールでは、このプロパティには影響はありません。On other controls, this property has no impact.
依存プロパティ情報Dependency Property Information
識別子フィールドです。Identifier field | BorderThicknessProperty |
メタデータのプロパティを設定するには true Metadata properties set to true |
AffectsMeasure、 AffectsRenderAffectsMeasure, AffectsRender |
適用対象
フィードバック
お客様のご意見をお寄せください。 お寄せいただく内容の種類を選択:
このフィードバック システムは、GitHub Issues を利用して構築されています。 詳しくは、ブログをご覧ください。
フィードバックを読み込んでいます...