将鼠标悬停在Xamarin表单UWP上时删除边框

时间:2018-11-01 10:17:09

标签: xamarin button xamarin.forms xamarin.uwp custom-renderer

如何将鼠标悬停在Xamarin形式的UWP中时显示的矩形边框。我引用了以下链接

Remove border of button when hover

我们必须更改border width属性,但是也失败了,因为我使用的是圆角按钮,只有在悬停和单击时才出现边框。

以下屏幕截图将显示场景。

Button - normal state

Button - when hovers

1 个答案:

答案 0 :(得分:1)

发布后几分钟,我已经找到了自己问题的答案。

您可以在UWP项目的App.xaml中覆盖ButtonBackgroundPointerOver。

<Application.Resources>
    <SolidColorBrush x:Key="ButtonBackgroundPointerOver">Transparent</SolidColorBrush>
</Application.Resources>

我是从Hover pointover background

找到的