Пример #1
0
        private void GoToAccounts(object o)
        {
            var vc  = new AccountsViewController();
            var nav = new ThemedNavigationController(vc);

            PresentViewController(nav, true, null);
        }
Пример #2
0
        private void ProfileButtonClicked()
        {
            var vc = new AccountsViewController();

            vc.NavigationItem.LeftBarButtonItem          = new UIBarButtonItem(UIBarButtonSystemItem.Cancel);
            vc.NavigationItem.LeftBarButtonItem.Clicked += (sender, e) => DismissViewController(true, null);
            PresentViewController(new ThemedNavigationController(vc), true, null);
        }
Пример #3
0
 private void GoToAccounts(object o)
 {
     var vc = new AccountsViewController();
     var nav = new ThemedNavigationController(vc);
     PresentViewController(nav, true, null);
 }
Пример #4
0
 public EditSource(AccountsViewController dvc) 
     : base (dvc)
 {
     _parent = new WeakReference<AccountsViewController>(dvc);
 }
Пример #5
0
 private void ProfileButtonClicked()
 {
     var vc = new AccountsViewController();
     vc.NavigationItem.LeftBarButtonItem = new UIBarButtonItem { Image = Images.Buttons.Cancel };
     vc.NavigationItem.LeftBarButtonItem.Clicked += (sender, e) => DismissViewController(true, null);
     PresentViewController(new ThemedNavigationController(vc), true, null);
 }