如何在 xamarin.forms 中为标签页应用渐变颜色

How to apply gradient color for tabbed page in xamarin.forms

我正在研究 xamarin。表单应用程序,我可以在其中应用渐变颜色的导航栏,但我无法将这些渐变颜色应用于 Android 和 iOS 平台中的选项卡式页面。 xamarin.forms.

中的标签页有什么方法可以应用渐变色吗?

不明白你want.When发的图片是什么效果,我会检查这个答案。

也许这是你想要的,在你的 Xamarin.Forms 项目中这样做。

var tabbedPage = new TabbedPage()
{
   BackgroundColor = Color.LightGray;
   BarBackgroundColor = Color.Black,
   BarTextColor = Color.White
};

或在 .xaml 中设置那些属性。