标签: c# xaml uwp win-universal-app uwp-xaml
如何将自定义样式(从资源)应用到具有焦点的TextBox。
我通常的解决方案
<Style TargetType="TextBox" x:Key="NoteBox"> <Setter Property="Background" Value="Transparent" /> <Setter Property="BorderBrush" Value="Transparent" /> </Style>
不影响焦点或选定状态。
答案 0 :(得分:1)
您必须在其VisualState中编辑Setters。您可以获取默认模板here。
只需复制它并编辑Focused VisualState中的值。
Focused