Xamarin 表单 UWP 悬停按钮时删除边框
Remove border when hover a button Xamarin form UWP
如何在 Xamarin 表单 UWP 中删除悬停按钮时显示的矩形边框。我参考了以下 link
Remove border of button when hover
我们必须更改边框宽度 属性,但也失败了,因为我使用的是圆角按钮,只有在悬停和单击时才会出现边框。
以下屏幕截图将显示场景。
Button - normal state
Button - when hovers
我在发布问题几分钟后就找到了答案。
您可以在 UWP 项目的 App.xaml 中覆盖 ButtonBackgroundPointerOver。
<Application.Resources>
<SolidColorBrush x:Key="ButtonBackgroundPointerOver">Transparent</SolidColorBrush>
</Application.Resources>
我从
中找到了这个
如何在 Xamarin 表单 UWP 中删除悬停按钮时显示的矩形边框。我参考了以下 link
Remove border of button when hover
我们必须更改边框宽度 属性,但也失败了,因为我使用的是圆角按钮,只有在悬停和单击时才会出现边框。
以下屏幕截图将显示场景。
Button - normal state
Button - when hovers
我在发布问题几分钟后就找到了答案。
您可以在 UWP 项目的 App.xaml 中覆盖 ButtonBackgroundPointerOver。
<Application.Resources>
<SolidColorBrush x:Key="ButtonBackgroundPointerOver">Transparent</SolidColorBrush>
</Application.Resources>
我从