如何在导航页面栏中禁用xamarin图标并设置标题?
答案 0 :(得分:1)
我们可以访问ActionBar图标并在Android项目中将其设置为透明,代码:
protected override void OnCreate (Bundle bundle)
{
base.OnCreate (bundle);
global::Xamarin.Forms.Forms.Init (this, bundle);
LoadApplication (new App ());
this.ActionBar.SetIcon ((int)Android.Graphics.Color.Transparent));
}
Page有一个可以设置的title属性。您可以在构造函数中执行以下操作:
this.Title = "my page";
答案 1 :(得分:1)
您可以使用此功能删除图标。
ActionBar.SetIcon(Android.Resource.Color.Transparent);
要设置标题,您可以使用C#中的代码
this.Title="mypage"
或者对于Xaml,将以下属性放在ContentPage节点
中Title="mypage"