【发布时间】:2016-11-01 11:50:47
【问题描述】:
我的文本框位于WPF 用户控件中,样式被应用为:
<ResourceDictionary Source="pack://application:,,,/MyStyles1;component/Themes/MyTheme.xaml"/>
样式如下:
<Style x:Key="OutputTextBoxStyle" TargetType="TextBox">
<Setter Property="FontSize" Value="15" />
<Setter Property="Background" Value="Green" />
<Setter Property="Foreground" Value="Blue" />
<Setter Property="BorderBrush" Value="Red" />
<Setter Property="BorderThickness" Value="15" />
<Setter Property="Padding" Value="2" />
</Style>
请注意,所有属性(例如 Foreground、BorderBrush、BorderThickness 等)都按要求工作。 但没有应用 TextBox 背景。
请帮忙。
【问题讨论】:
标签: wpf xaml background