答案 0 :(得分:3)
首先,您需要复制TextBox
的{{3}}。
然后去找这个元素 -
<TextBlock x:Name="GlyphElement"
AutomationProperties.AccessibilityView="Raw"
Foreground="{ThemeResource TextControlButtonForeground}"
FontStyle="Normal"
FontSize="12"
FontFamily="{ThemeResource SymbolThemeFontFamily}"
HorizontalAlignment="Center"
Text=""
VerticalAlignment="Center" />
注意FontSize
设置为12
。将其更改为 -
FontSize="{TemplateBinding FontSize}"
现在,FontSize
的{{1}}将与其模板化父级GlyphElement
同步(即FontSize
),其中DeleteButton
为FontSize
与其模板化的父TextBox
同步。
如果现在增加FontSize
的{{1}},您会看到文字和 X 都会变大。