The standard agreement to fulfill your request is to click Modal and use ToolBarItems . You can find an example of applying ToolBarItem to your page on the Xamarin Forums .
Let me know if you need a more specific example.
UPDATED EXAMPLE
ToolbarItems :
var cancelItem = new ToolbarItem
{
Text = "Cancel"
};
var doneItem = new ToolbarItem
{
Text = "Done"
};
:
this.ToolbarItems.Add(cancelItem);
this.ToolbarItems.Add(doneItem);
CommandProperty:
doneItem.SetBinding(MenuItem.CommandProperty, "DoneClicked");
, :
doneItem.Clicked += (object sender, System.EventArgs e) =>
{
// Perform action
};
NavigationPage, ToolbarItems .
, .