我正在使用 Xamarin 跨平台表单标签页。我想更改选定的选项卡颜色文本。我可以更改背景和文本颜色。 我需要更改选定的选项卡颜色文本。 这是我的代码
var page = new tabPage()
{
BarBackgroundColor = Color.WhiteSmoke,
BarTextColor = Color.Black
};
<TabbedPage xmlns="http://xamarin.com/schemas/2014/forms"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
x:Class="ABCAPP.Views.MainPage" >
<!--Pages can be added as references or inline-->
<ContentPage Title="ALL" >
</ContentPage>
<ContentPage Title="Email" >
</ContentPage>
<ContentPage Title="phoe" >
</ContentPage>
如果我们选择“电子邮件”,我想更改“电子邮件”,文本颜色。我该怎么做 ?
相关分类