【发布时间】:2018-07-16 02:54:13
【问题描述】:
我正在使用 Xamarin 跨平台标签页。 我想更改选定的标签颜色文本。 我可以更改背景和文本颜色。 我需要更改所选的 Tab 颜色 Text。 这是我的代码
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>
如果我们选择“Email”,我想改变“Email”的文字颜色。 我该怎么做?
【问题讨论】: