0
我想更改作爲默認Label控件的子項的Border控件的屬性。我有以下的風格,一切都只是在我使用這個answer作爲我努力的基礎UI如何設置標籤的子控件的屬性
<Style x:Key="StandardLabel" TargetType="{x:Type Label}" BasedOn="{StaticResource {x:Type Label}}">
<Setter Property="HorizontalAlignment" Value="Center" />
<Setter Property="ContentStringFormat" Value="{}{0:0.000}"/>
<Setter Property="Height" Value="25"/>
<Setter Property="Margin" Value="0"/>
<Style.Resources>
<Style TargetType="{x:Type Border}" >
<Setter Property="Padding" Value="3"/>
</Style>
</Style.Resources>
</Style>
正在顯示的改變邊境控制,但它似乎並沒有爲我工作。有什麼想法我做錯了什麼?
你看那個......我做它的方式更加混亂,它必須是。謝謝您的幫助。 – PlTaylor
WPF已經比它需要更混亂! –
出於好奇,你如何查看你的默認模板? – PlTaylor