AnchoredBlock.BorderThickness 属性
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
获取或设置元素的边框粗细。
public:
property System::Windows::Thickness BorderThickness { System::Windows::Thickness get(); void set(System::Windows::Thickness value); };
public System.Windows.Thickness BorderThickness { get; set; }
member this.BorderThickness : System.Windows.Thickness with get, set
Public Property BorderThickness As Thickness
属性值
一个 Thickness 结构,指定要应用的边框量(以与设备无关的像素为单位)。
默认值为统一粗细,即零 (0.0)。
示例
以下示例演示如何设置BorderThickness元素 () Paragraph 的属性Block。
<FlowDocument>
<Paragraph Name="par"
BorderBrush="Blue"
BorderThickness="0.25in"
>
<Run>
Child elements in this Block element (Paragraph) will be surrounded by a blue border.
</Run>
<LineBreak/><LineBreak/>
<Run>
This border will be one quarter inch thick in all directions.
</Run>
</Paragraph>
</FlowDocument>
下图显示了此示例的呈现效果。
以下示例演示如何以编程方式设置 BorderThickness 属性。
Paragraph par = new Paragraph();
Run run1 = new Run("Child elements in this Block element (Paragraph) will be surrounded by a blue border.");
Run run2 = new Run("This border will be one quarter inch thick in all directions.");
par.Inlines.Add(run1);
par.Inlines.Add(run2);
par.BorderBrush = Brushes.Blue;
ThicknessConverter tc = new ThicknessConverter();
par.BorderThickness = (Thickness)tc.ConvertFromString("0.25in");
Dim par As New Paragraph()
Dim run1 As New Run("Child elements in this Block element (Paragraph) will be surrounded by a blue border.")
Dim run2 As New Run("This border will be one quarter inch thick in all directions.")
par.Inlines.Add(run1)
par.Inlines.Add(run2)
par.BorderBrush = Brushes.Blue
Dim tc As New ThicknessConverter()
par.BorderThickness = CType(tc.ConvertFromString("0.25in"), Thickness)
注解
XAML 属性用法
<object BorderThickness="uniformThickness"/>
- or -
<object BorderThickness="independentThickness"/>
- or -
<object BorderThickness="qualifiedUniformThickness"/>
- or -
<object BorderThickness="qualifiedIndependentThickness"/>
XAML 值
uniformThickness
单个 Double 值的字符串表示形式,以统一应用于所有四个粗细尺寸。 例如,值为 "10"
等效于值 "10,10,10,10"
。 不限定的值以设备独立像素为单位进行度量。 字符串不需要显式包含小数点。
independentThickness
四个有序 Double 值的字符串表示形式,对应于左、上、右和底部的独立粗细尺寸,按此顺序排列。 四个值必须用逗号分隔;不允许空格。 例如,“5,10,15,20”导致内容左侧边框为 5 像素,内容上方边框为 10 像素,内容右侧边框为 15 像素,内容下方边框为 20 像素。
qualifiedUniformThickness
由 uniformThickness 描述的值,后跟以下单位说明符之一: px``in
px
(默认) 是设备无关的单位 (每单元 1/96 英寸)
in
为英寸;1in==96px
例如, "1in"
在所有方向提供 1 英寸的统一边框。
qualifiedIndependentThickness
由 independentThickness 描述的值,每个独立值后跟以下单位说明符之一: px``in
px
(默认) 是设备无关的单位 (每单元 1/96 英寸)
in
为英寸;1in==96px
例如,"1.5in,0.8in,1.5in,0.8in"
。 单元说明符可以混合或省略一个或多个值。
依赖项属性信息
标识符字段 | BorderThicknessProperty |
元数据属性设置为 true |
AffectsMeasure |