如何在WinPhone 8.1 Xamarin便携式项目中使用XFGloss

问题描述 投票:4回答:1

我正在制作一个便携式xamarin应用程序,我正在使用XFGloss。在Android和iOS上一切正常,但在WinPhone 8.1上我的BackGroud Gradiant仍然是黑色的。

我的页面有:

<xfg:ContentPageGloss.BackgroundGradient>
  <xfg:Gradient Rotation="150">
      <xfg:GradientStep StepColor="#305E70" StepPercentage="0" />
      <xfg:GradientStep StepColor="#305E70" StepPercentage="1" />
  </xfg:Gradient>
</xfg:ContentPageGloss.BackgroundGradient>

在,Android和iOS我应该初始化xfgloss,像这样:

-Android

XFGloss.Droid.Library.Init(this, bundle);

-iOS

XFGloss.iOS.Library.Init();

而且我没有找到如何在WinPhone上初始化XFGloss,甚至知道是否必须初始化它。

enter image description here

如何使这适用于WinPhone?

c# xamarin xamarin.winphone
1个回答
0
投票

XFGloss不支持Windows。我想它永远不会支持WP8,但有时它可能会得到UWP的支持。至少there is issue为此

© www.soinside.com 2019 - 2024. All rights reserved.