Represents a workspace-modal dialog box.
상속: ClearCanvas.Desktop.DesktopObject, IWorkspaceDialogBox
예제 #1
0
파일: Workspace.cs 프로젝트: nhannd/Xian
		/// <summary>
		/// Creates a dialog box view for the specified dialog box.
		/// </summary>
		internal IWorkspaceDialogBoxView CreateWorkspaceDialogBoxView(WorkspaceDialogBox dialogBox)
		{
			return this.WorkspaceView.CreateDialogBoxView(dialogBox);
		}
예제 #2
0
			internal Host(WorkspaceDialogBox owner, IApplicationComponent component)
				: base(component)
			{
				Platform.CheckForNullReference(owner, "owner");
				_owner = owner;
			}
예제 #3
0
 /// <summary>
 /// Creates a dialog box view for the specified dialog box.
 /// </summary>
 internal IWorkspaceDialogBoxView CreateWorkspaceDialogBoxView(WorkspaceDialogBox dialogBox)
 {
     return(this.WorkspaceView.CreateDialogBoxView(dialogBox));
 }
예제 #4
0
			internal Host(WorkspaceDialogBox owner, IApplicationComponent component)
				: base(component)
			{
				Platform.CheckForNullReference(owner, "owner");
				_owner = owner;
			}
예제 #5
0
 public IWorkspaceDialogBoxView CreateDialogBoxView(WorkspaceDialogBox dialogBox)
 {
     throw new NotImplementedException();
 }