Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 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

DiagramControl.Title Property

The document title to which the window title can be bound. This is a dependency property.

Namespace: DevExpress.Xpf.Diagram

Assembly: DevExpress.Xpf.Diagram.v24.2.dll

NuGet Package: DevExpress.Wpf.Diagram

#Declaration

[Browsable(false)]
public string Title { get; }

#Property Value

Type Description
String

A string object that represents the document title.

#Remarks

Bind the System.Windows.Window.Title property to the Title property to use the document title as the window’s title. By default, the Title property returns “Document”. If the current document is saved to or loaded from a file, the Title returns the name of the file. If the current document has unsaved changes (the DiagramControl.HasChanges property returns true), an asterisk * character is added to the end of the title.

Alternatively, use the DiagramControl.AttachToWindow method.

See Also