Back to Devexpress

DockManager.About() Method

windowsforms-devexpress-dot-xtrabars-dot-docking-dot-dockmanager-b829d45f.md

latest1.5 KB
Original Source

DockManager.About() Method

Activates the dock manager’s About dialog box.

Namespace : DevExpress.XtraBars.Docking

Assembly : DevExpress.XtraBars.v25.2.dll

NuGet Package : DevExpress.Win.Navigation

Declaration

csharp
public static void About()
vb
Public Shared Sub About

Remarks

Primarily, this method is intended for design-time use and is not intended to be called directly from your code.

The About method invokes the About dialog displaying the product name and licensing information. On development machines, the license information is always correct. On client machines, the product is always marked as TRIAL in the About dialog.

The code below demonstrates use of the About method:

csharp
private void aboutBarButtonItem_ItemClick(object sender, ItemClickEventArgs e) {
    DevExpress.XtraBars.Docking.DockManager.About();
}

See Also

DockManager Class

DockManager Members

DevExpress.XtraBars.Docking Namespace