Ejemplo n.º 1
0
        readonly View2 _view2   = new View2();            // -"-

        void ShowView(ExtendedContentView view)
        {
            try {
                view.Activating();                     // implemented only for View1B
                _mainContent.Content = view;
            }
            catch (Exception ex) {
                _mainContent.Content = new ErrorView(ex);
            }
        }
Ejemplo n.º 2
0
		readonly View2 _view2 = new View2 ();     // -"-

		void ShowView (ExtendedContentView view)
		{
			try {
				view.Activating ();    // implemented only for View1B
				_mainContent.Content = view;
			}
			catch (Exception ex) {
				_mainContent.Content = new ErrorView (ex);
			}
		}