Beispiel #1
0
 /// <summary>
 /// Raises the item shown event.
 /// </summary>
 public void OnItemShown(Navigation widget, NavigationItemEventArgs e)
 {
     using (widget.Platform.Context)
         widget.OnItemShown(e);
 }
Beispiel #2
0
			/// <summary>
			/// Raises the item shown event.
			/// </summary>
			public void OnItemShown(Navigation widget, EventArgs e)
			{
				widget.Platform.Invoke(() => widget.OnItemShown(e));
			}
Beispiel #3
0
 /// <summary>
 /// Raises the item shown event.
 /// </summary>
 public void OnItemShown(Navigation widget, EventArgs e)
 {
     widget.Platform.Invoke(() => widget.OnItemShown(e));
 }