Skip to main content
.NET 6.0+

AboutInfo.Init(IModelApplication, Version) Method

Initializes the AboutInfo instance.

Namespace: DevExpress.ExpressApp.SystemModule

Assembly: DevExpress.ExpressApp.v23.2.dll

NuGet Package: DevExpress.ExpressApp

Declaration

public void Init(
    IModelApplication model,
    Version applicationAssemblyVersion
)

Parameters

Name Type Description
model IModelApplication

An IModelApplication object that is the Application Model’s Application node.

applicationAssemblyVersion Version

A Version object that is the version of the current application’s assembly.

Remarks

The Init method is invoked by the AboutInfoController and AboutInfoControl before showing the about information on the current application. This method initializes the AboutInfo object’s properties with the values of the corresponding properties from the Application Model’s Application node (see IModelApplication). However, if you set the AboutInfo object’s properties in code, the values that are set by this method won’t be considered.

Use this method if you implement a custom Controller or control to show information on the current application in a custom manner.

See Also