我正在使用具有两个项目 android 和 ios 的 xamarin.form (Portable)。
我想在操作栏中添加标题,该标题会根据详细信息页面发生变化,还想在操作栏中的右侧添加一个按钮
我引用下面的链接
https://github.com/xamarin/xamarin-forms-samples/tree/master/Navigation/MasterDetailPage
此链接帮助我创建导航页面。但无法在操作栏中添加标题和按钮
下面是我想要的操作栏的图像。付款是一个标题,可以根据详情页更改,右侧“+”是按钮
请建议我如何使用 xamarin 表单(可移植)在操作栏中添加标题和按钮
Best Answer-推荐答案 strong>
您需要创建页面,就像没有任何其他选项可以在不使用主详细信息页面中的工具栏项目的情况下添加加号一样
以下是一些示例代码
public class TodoListPageCS : ContentPage
{
private ToolbarItem _saveAddToolBarItem;
public TodoListPageCS ()
{
Title = "age Name";
_saveAddToolBarItem = new ToolbarItem()
{ Text = "Save"};
ToolbarItems.Add(_saveAddToolBarItem);
_saveAddToolBarItem.Clicked += _saveAddToolBarItem_Clicked;
Content = new StackLayout {
Children = {
new Label {
Text = "Todo list data goes here",
HorizontalOptions = LayoutOptions.Center,
VerticalOptions = LayoutOptions.CenterAndExpand
}
}
};
}
private void _saveAddToolBarItem_Clicked(object sender, System.EventArgs e)
{
throw new System.NotImplementedException();
}
}
否则,您需要创建自己的自定义基本页面而不是内容页面
要更改工具栏颜色,请参阅以下链接:
https://forums.xamarin.com/discussion/44586/navigationbar-background-image-renderer-android
跳这段代码会帮助你
更改工具栏颜色的方法:
Detail = new NavigationPage((Page)Activator.CreateInstance(item.TargetType)) {
BarBackgroundColor = Color.FromHex("#42a990"),
BarTextColor = Color.White,
};
关于android - Xamarin - 在操作栏中添加标题和按钮,我们在Stack Overflow上找到一个类似的问题:
https://stackoverflow.com/questions/41800561/
|