Skip to main content
.NET 8.0+

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

AboutInfoController Class

Represents a WindowController descendant that contains the About Action.

Namespace: DevExpress.ExpressApp.Win.SystemModule

Assembly: DevExpress.ExpressApp.Win.v24.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