您不必覆盖整个模板。尝试这个:
<TextBox Text="Copy this...">
<TextBox.Style>
<Style TargetType="TextBox">
<Setter Property="IsReadOnly" Value="True" />
<Setter Property="BorderThickness" Value="0" />
<Setter Property="TextWrapping" Value="Wrap" />
</Style>
</TextBox.Style>
</TextBox>
Run Code Online (Sandbox Code Playgroud)
上面的样式应该为您提供一个TextBox看起来像 aTextBlock或 a 的选项Label。