ClearCanvas.Desktop.View.WinForms.WorkspaceView.WorkspaceView C# (CSharp) Method

WorkspaceView() protected method

Constructor.
protected WorkspaceView ( Workspace workspace, DesktopWindowView desktopView ) : System.Windows.Forms
workspace Workspace
desktopView DesktopWindowView
return System.Windows.Forms
		protected internal WorkspaceView(Workspace workspace, DesktopWindowView desktopView)
		{
			var componentView = workspace.ComponentView;

			_control = (Control)componentView.GuiElement;
			_tabPage = new Crownwood.DotNetMagic.Controls.TabPage { Control = _control, Tag = this };
			this.DesktopView = desktopView;

			_dialogBoxManager = new WorkspaceDialogBoxViewManager(this, _control);
		}