如何将鼠标悬停在Xamarin形式的UWP中时显示的矩形边框。我引用了以下链接
Remove border of button when hover
我们必须更改border width属性,但是也失败了,因为我使用的是圆角按钮,只有在悬停和单击时才出现边框。
以下屏幕截图将显示场景。
答案 0 :(得分:1)
发布后几分钟,我已经找到了自己问题的答案。
您可以在UWP项目的App.xaml中覆盖ButtonBackgroundPointerOver。
<Application.Resources>
<SolidColorBrush x:Key="ButtonBackgroundPointerOver">Transparent</SolidColorBrush>
</Application.Resources>
找到的