コード例 #1
0
ファイル: AllContactsScreen.cs プロジェクト: NamXH/Graphy
        void AddButtonClicked(object sender, EventArgs e)
        {
            var addContactsScreen = new AddEditContactScreen(NavigationController);
            var navigation        = new UINavigationController(addContactsScreen);

            NavigationController.PresentViewController(navigation, true, null);
        }
コード例 #2
0
ファイル: AllContactsScreen.cs プロジェクト: NamXH/Graphy
 void AddButtonClicked(object sender, EventArgs e)
 {
     var addContactsScreen = new AddEditContactScreen(NavigationController);
     var navigation = new UINavigationController(addContactsScreen);
     NavigationController.PresentViewController(navigation, true, null);
 }