Ejemplo n.º 1
0
		public TodoListView() 
		{
			this.Title = "Todo";

			this.View.BackgroundColor = UIColor.White;

			_kludge = this;
		}
Ejemplo n.º 2
0
        public override bool FinishedLaunching(UIApplication application, NSDictionary launchOptions)
        {
            // create a new window instance based on the screen size
            Window = new UIWindow (UIScreen.MainScreen.Bounds);

            // If you have defined a root view controller, set it here:
            UIViewController controller;

            if (null != Globals.theSettings) {
                controller = new TodoListView();
            } else {
                controller = new LoginView ();
            }

            navigationController = new UINavigationController (controller);
            Window.RootViewController = navigationController;

            // make the window visible
            Window.MakeKeyAndVisible ();

            return true;
        }
Ejemplo n.º 3
0
		public ListViewDelegate(TodoListView owner)
		{
			this.owner = owner;
		}