Skip to main content

AboutInfo.Init(IModelApplication, Version) Method

Initializes the AboutInfo instance.

Namespace: DevExpress.ExpressApp.SystemModule

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

AboutInfoController calls the Init method 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, XAF does not apply the values that this method specifies.

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

See Also