如何更改Xamarin.Forms标签栏高度(iOS)

时间:2017-08-30 15:56:38

标签: xamarin xamarin.forms

如何在Xamarin.Forms(iOS)中更改标签栏的高度?是否可以使用TabbedRenderer?

1 个答案:

答案 0 :(得分:5)

是的,可以从CustomRenderer进行修改。

您需要在Forms项目中继承TabbedPage并使用此类导出渲染。

然后在CustomRenderer中覆盖ViewWillLayoutSubviews方法。类似的东西:

public class MyTabbedPageRenderer : TabbedRenderer
{
    // Modify this variable with the height you desire.
    private readonly float tabBarHeight = 55f;

    public override void ViewWillLayoutSubviews()
    {
        base.ViewWillLayoutSubviews();

        TabBar.Frame = new CGRect(TabBar.Frame.X, TabBar.Frame.Y + (TabBar.Frame.Height - tabBarHeight), TabBar.Frame.Width, tabBarHeight);
    }
}

希望这会有所帮助.-