Represents a workspace-modal dialog box.
Inheritance: ClearCanvas.Desktop.DesktopObject, IWorkspaceDialogBox
Beispiel #1
0
		/// <summary>
		/// Creates a dialog box view for the specified dialog box.
		/// </summary>
		internal IWorkspaceDialogBoxView CreateWorkspaceDialogBoxView(WorkspaceDialogBox dialogBox)
		{
			return this.WorkspaceView.CreateDialogBoxView(dialogBox);
		}
			internal Host(WorkspaceDialogBox owner, IApplicationComponent component)
				: base(component)
			{
				Platform.CheckForNullReference(owner, "owner");
				_owner = owner;
			}
Beispiel #3
0
 /// <summary>
 /// Creates a dialog box view for the specified dialog box.
 /// </summary>
 internal IWorkspaceDialogBoxView CreateWorkspaceDialogBoxView(WorkspaceDialogBox dialogBox)
 {
     return(this.WorkspaceView.CreateDialogBoxView(dialogBox));
 }
Beispiel #4
0
			internal Host(WorkspaceDialogBox owner, IApplicationComponent component)
				: base(component)
			{
				Platform.CheckForNullReference(owner, "owner");
				_owner = owner;
			}
Beispiel #5
0
 public IWorkspaceDialogBoxView CreateDialogBoxView(WorkspaceDialogBox dialogBox)
 {
     throw new NotImplementedException();
 }