我這個回答這個問題,有關鏈接按鈕的工作:我如何正確地應用樣式到內容呈現
https://stackoverflow.com/a/3564706/945
的問題是,TextDecoration下劃線樣式只被應用到自動生成的TextBlocks。
<Button Style="{StaticResource LinkButton}">Text</Button>
'文本' 強調
<Button Style="{StaticResource LinkButton}"><TextBlock Text='Text' /></Button>
'文本' 是不是下劃線
爲什麼不申請內容中的任何TextBlock的?
這是風格的相關部分:
<Style x:Key="LinkButton"
TargetType="Button"
BasedOn="{StaticResource ResourceKey={x:Type Button}}"
>
<Setter Property="Width" Value="Auto"/>
<Setter Property="Template">
<Setter.Value>
<ControlTemplate TargetType="Button">
<ContentPresenter Content="{TemplateBinding Content}"
ContentTemplate="{TemplateBinding ContentTemplate}"
VerticalAlignment="Center"
>
<ContentPresenter.Resources>
<Style TargetType="{x:Type TextBlock}">
<Setter Property="TextDecorations" Value="Underline" />
</Style>
</ContentPresenter.Resources>
</ContentPresenter>
</ControlTemplate>
</Setter.Value>
</Setter>
</Style>
爲什麼要在Button中放置TextBlock? Button類擁有自己的內置「Content」字段,可以很好地進行格式和縮放 - 您還可以在Blend中輕鬆編輯它的操作方式。 '' –