Skip to content

Instantly share code, notes, and snippets.

@SuperYeti
Created September 28, 2011 04:58
Show Gist options
  • Save SuperYeti/1247027 to your computer and use it in GitHub Desktop.
Save SuperYeti/1247027 to your computer and use it in GitHub Desktop.
public void BuildMenu ()
{
DAL.SetupDB();
RootElement menu = new RootElement ("Simcoe Cabinets")
{
new Section()
{
new StringElement ("Orders", ShowOrdersForm),
new StringElement ("Settings",ShowSettings)
}
};
var dv = new SpiffyDialogViewController (menu, false, Application.BackgroundImage){Autorotate = true};
Application.navigation.PushViewController (dv, false);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment