这是我的按钮:
<Button
x:Name="buttonClear"
Width="74"
Height="52"
Margin="3,175,0,0"
Padding="8,1,8,5"
HorizontalAlignment="Left"
VerticalAlignment="Top"
Content="C"
FontSize="24"
FontWeight="Normal"
FocusVisualPrimaryBrush="Transparent"
FocusVisualSecondaryThickness="0"
Style="{ThemeResource ButtonRevealStyle}"
Click="ButtonClear_Click" />
如您所见,我添加了:
FocusVisualPrimaryBrush="Transparent"
FocusVisualSecondaryThickness="0"
我认为它会消除将鼠标指针悬停在按钮上时显示的灰色边框。但它没有用。
我还尝试将以下内容添加到 App.xaml:
<Application.Resources>
<SolidColorBrush x:Key="ButtonBackgroundPointerOver">Transparent</SolidColorBrush>
</Application.Resources>
还是没有结果。我必须在其他地方引用密钥吗?
慕妹3146593
POPMUISE
相关分类