有没有办法可以自定义Xamarin.Forms.TabbedPage
对象上标签的颜色架构,这样它就不会采用目标平台的默认外观?
我想更改字体颜色,背景和当前选定的标签颜色。
答案 0 :(得分:5)
我建议使用自定义渲染器。
这是iOS的一个例子:
[assembly: ExportRenderer(typeof(TabbedPage), typeof(TabbedPageRenderer))]
namespace MyApp.iOS
{
public class TabbedPageRenderer : TabbedRenderer
{
protected override void OnElementChanged(VisualElementChangedEventArgs e)
{
base.OnElementChanged(e);
TabBar.TintColor = UIColor.White;
TabBar.BarTintColor = UIColor.Black;
TabBar.BackgroundColor = UIColor.Gray;
}
}
}
刚刚通过Xamarin.iOS项目中的这个课程。
对于Xamarin.Android,您还可以使用自定义渲染器来完成相同的操作。自定义渲染器的Android实现与iOS版本不同。
答案 1 :(得分:2)
晚会。
现在您可以按如下方式更改选项卡式页面背景颜色
BarBackgroundColor = Color.Black;
以下链接可以为您提供更多帮助
How to change color of tabbed page indicator in Xamarin.Droid?
http://thatcsharpguy.com/post/platformtabbedpage-xamarin-forms-en/
答案 2 :(得分:1)
Xamarin.Forms
中没有内置方式,但在特定于平台的项目中,这很容易实现。例如在iOS
上使用UIAppearance。
答案 3 :(得分:1)
在选项卡页面中,为了更改xamarin表单中的标题颜色,而不是在android native中。
标签页代码:
class MainPage : TabbedPage
{
LoginManager app;
public MainPage(LoginManager ilm)
{
app = ilm;
Title = "Infrastructure";
Icon = "server.png";
this.BarTextColor = Color.White;
this.BarBackgroundColor = Color.Blue;
Children.Add(new AssetsView());
Children.Add(new ServiceView());
ToolbarItem tbi = new ToolbarItem() {
Text = "Logout",
Order = ToolbarItemOrder.Secondary,
Priority = 0,
};
AssetView代码:
public AssetView()
{
Title = "Assets";
this.BackgroundColor = Color.FromHex("D3D3D3");
list = new AssetsList();
searchbar = new SearchBar()
{
Placeholder = "Search",
TextColor = Color.Black,
BackgroundColor = Color.White,
CancelButtonColor = Color.Black,
PlaceholderColor = Color.Black
};
ServiceView代码:
public class ServiceView : ContentPage
{
ServiceList list;
SearchBar searchbar;
public ServiceView()
{
Title = "Services";
this.BackgroundColor = Color.FromHex("D3D3D3");
list = new ServiceList();
searchbar = new SearchBar()
{
Placeholder = "Search",
TextColor = Color.Black,
BackgroundColor = Color.White,
CancelButtonColor = Color.Black,
PlaceholderColor = Color.Black
};
答案 4 :(得分:0)
我可以通过执行以下操作在Android中实现此目的:
将Current.MainPage投射到TabbedPage - 这将允许您设置属性。
((TabbedPage)Current.MainPage).BarBackgroundColor = Color.FromHex(settings.AppSecondaryColour);
您应该能够以相同的方式更改所需的其他属性。我还没有在IOS中对此进行测试。
答案 5 :(得分:0)
您可以这样操作:
<TabbedPage xmlns="http://xamarin.com/schemas/2014/forms"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
xmlns:d="http://xamarin.com/schemas/2014/forms/design"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
mc:Ignorable="d"
xmlns:views="clr-namespace:SilCoyLuhn.Views"
x:Class="SilCoyLuhn.Views.MainPage"
BarBackgroundColor="{StaticResource Primary}"
BarTextColor="{StaticResource LightTextColor}">
<TabbedPage.Resources>
<ResourceDictionary>
<Color x:Key="Primary">#9DD69F</Color>
<Color x:Key="Accent">#E1F4E0</Color>
<Color x:Key="LightTextColor">#999999</Color>
</ResourceDictionary>
</TabbedPage.Resources>
</TabbedPage>
在<TabbedPage.Resources>
中,我定义了用作BarBackgroundColor
和BarTextColor
的静态资源。