Caliburn.Micro.IWindowManagerExtensions.Show C# (CSharp) Метод

Show() публичный статический Метод

Shows a normal, non-modal dialog for the specified model. By default RadWindow dialog is shown at the center of the screen
public static Show ( this windowManager, object rootModel, object context = null, object>.IDictionary settings = null ) : void
windowManager this
rootModel object The root model.
context object The context.
settings object>.IDictionary The optional RadWindow settings.
Результат void
		public static void Show(this IWindowManager windowManager, object rootModel, object context = null, IDictionary<string, object> settings = null)
		{
			var wm = windowManager as TelerikWindowManager;
			if (wm == null)
				throw new InvalidOperationException("Expected 'Caliburn.Micro.TelerikWindowManager'.");

			wm.Show(rootModel, context, settings);
		}
IWindowManagerExtensions