Beispiel #1
0
 public void HelpDidClose(HelpView view)
 {
     helpView.RemoveFromSuperview();
     helpView = null;
     Unpause();
     UIAccessibility.PostNotification(UIAccessibilityPostNotification.ScreenChanged, statusView);
 }
Beispiel #2
0
 void questionPressed()
 {
     Pause();
     helpView = new HelpView(View.Bounds);
     View.AddSubview(helpView);
     helpView.HelpDidClose += HelpDidClose;
     helpView.Show();
     UIAccessibility.PostNotification(UIAccessibilityPostNotification.ScreenChanged, null);
 }
		void questionPressed ()
		{
			pause ();
			helpView = new HelpView (View.Bounds);
			View.AddSubview (helpView);
			helpView.HelpDidClose += new HelpDidCloseHandler (HelpDidClose);
			helpView.Show ();
			UIAccessibility.PostNotification (UIAccessibilityPostNotification.ScreenChanged, null);
		}
		public void HelpDidClose (HelpView view)
		{
			helpView.RemoveFromSuperview ();
			helpView = null;
			unpause ();
			UIAccessibility.PostNotification (UIAccessibilityPostNotification.ScreenChanged, statusView);
		}