Created
September 28, 2011 04:58
-
-
Save SuperYeti/1247027 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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