Represents a dialog box.
Inheritance: ClearCanvas.Desktop.DesktopObject
Exemplo n.º 1
0
			internal Host(DialogBox owner, IApplicationComponent component)
				: base(component)
			{
				Platform.CheckForNullReference(owner, "owner");
				_owner = owner;
			}
Exemplo n.º 2
0
 /// <summary>
 /// Creates a new view for the specified <see cref="DialogBox"/>.
 /// </summary>
 /// <remarks>
 /// Override this method if you want to return a custom implementation of <see cref="IDialogBoxView"/>.
 /// </remarks>
 /// <param name="dialogBox"></param>
 /// <returns></returns>
 public virtual IDialogBoxView CreateDialogBoxView(DialogBox dialogBox)
 {
     throw new NotSupportedException();
 }
Exemplo n.º 3
0
 /// <summary>
 /// Creates a dialog box view for the specified dialog box.
 /// </summary>
 internal IDialogBoxView CreateDialogView(DialogBox dialog)
 {
     return(this.DesktopWindowView.CreateDialogBoxView(dialog));
 }
Exemplo n.º 4
0
 internal Host(DialogBox owner, IApplicationComponent component)
     : base(component)
 {
     Platform.CheckForNullReference(owner, "owner");
     _owner = owner;
 }