Skip to main content
A newer version of this page is available. .

AboutInfoController Class

Represents a WindowController descendant that contains the About Action.

Namespace: DevExpress.ExpressApp.Win.SystemModule

Assembly: DevExpress.ExpressApp.Win.v18.2.dll

Declaration

public class AboutInfoController :
    WindowController

Remarks

The AboutInfoController Controller contains the About Action. This Action invokes a popup window that shows information about the current Windows Forms application. This information is represented by a Detail View generated for an instance of the AboutInfo class. This Detail View contains two View Items: a StaticTextViewItem and StaticImageDetailItem. The StaticTextViewItem displays text provided by the AboutInfo.AboutInfoString property. The StaticImageDetailItem displays the image specified by the AboutInfo.LogoImageName property.

AboutActionWin

By default, the AboutInfo.LogoImageName and AboutInfo.AboutInfoString properties are set to the values of the Logo and AboutInfoString properties of the Application Model’s Application node, respectively. To customize the ‘About’ information, you can change the Application node’s property values in the Model Editor, or set the required values for the AboutInfo object’s properties in code.

If you need a custom View to be displayed by the About Action, customize the AboutInfo Detail View in the Model Editor. For this purpose, remove the “AboutText” and “Logo” View Items and add custom ones.

Implements

See Also