Skip to main content

DevExpress v24.1 Update — Your Feedback Matters

Our What's New in v24.1 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

IWorkspace Interface

In This Article

When implemented, represents a workspace.

Namespace: DevExpress.Xpf.Core

Assembly: DevExpress.Xpf.Core.v24.1.dll

NuGet Package: DevExpress.Wpf.Core

#Declaration

public interface IWorkspace

#Remarks

A workspace defines a layout of the WorkspaceManager‘s target control and its child controls. The WorkspaceManager stores workspaces in the WorkspaceManager.Workspaces collection. New workspaces are created by capturing the current target control’s layout (WorkspaceManager.CaptureWorkspace). The workspaces can be applied to the control later (WorkspaceManager.ApplyWorkspace), restoring its layout (and layouts of its child controls). To learn more, see WorkspaceManager.

Workspaces are identified by their names, obtained via the IWorkspace.Name property.

See Also