在Xamarin UWP应用程序的某些页面上显示空白的按钮

时间:2017-12-08 01:05:57

标签: c# xamarin mobile xamarin.forms uwp

我正在开发一个Xamarin应用程序,我有不同的页面,在启动UWP应用程序时,在某些页面上,按钮与页面本身颜色相同(见图1)。它们仍然可以正常工作并且可以点击,但你必须用光标指向它们以使它们以通常的颜色显示(见图2)。

我确切地说我没有为页面或按钮设置任何颜色属性,所以我不明白这种行为。

The buttons Register and Cancel are white on this page instead of grey

enter image description here

以下是我页面的XAML代码:

animation: closing 3s steps(90) forwards;
-webkit-animation: closing 3s steps(90) forwards;
-moz-animation: closing 3s steps(90) forwards;

background: -webkit-linear-gradient(top, rgba(255,0,0,0.5), rgba(255,255,0,0.5));
background: -o-linear-gradient(top, rgba(255,0,0,0.5), rgba(255,255,0,0.5));
background: -moz-linear-gradient(top, rgba(255,0,0,0.5), rgba(255,255,0,0.5));
background: linear-gradient(to top, rgba(255,0,0,0.65), rgba(255,255,0,0.65));

0 个答案:

没有答案