Exemplo n.º 1
0
		public static void Create (ApplicationContext context)
		{
			if (Current != null)
				Current.Dispose ();
			
			Current = new TabOrderManager (context);
		}
Exemplo n.º 2
0
		public void Dispose ()
		{
			_items.Clear ();
			_items = null;
			_context = null;
			if (_accessory != null) {
				_accessory.Dispose ();
				_accessory = null;
				_back.Dispose ();
				_back = null;
				_next.Dispose ();
				_next = null;
				_cancel.Dispose ();
				_cancel = null;
			}
		}
Exemplo n.º 3
0
		private TabOrderManager (ApplicationContext context)
		{
			_context = context;
		}
Exemplo n.º 4
0
		public CameraProvider (UINavigationController controller, ApplicationContext context)
			: base (controller, context)
		{
		}
Exemplo n.º 5
0
		public ImagePickerProvider (UINavigationController controller, ApplicationContext context)
		{
			_controller = controller;
			_context = context;
		}
Exemplo n.º 6
0
		void StartApplication ()
		{
			File.Delete (FileErrorPath ());
			
			_context = new ApplicationContext (rootController, _settings, _exceptionHandler);
			_context.Start (_settings.ClearCacheOnStart, _settings.ClearCacheOnStart);
		}