expressappframework-devexpress-dot-expressapp-dot-xafapplication-3439b35f.md
Specifies the application’s title.
Namespace : DevExpress.ExpressApp
Assembly : DevExpress.ExpressApp.v25.2.dll
NuGet Package : DevExpress.ExpressApp
[Browsable(false)]
public string Title { get; set; }
<Browsable(False)>
Public Property Title As String
| Type | Description |
|---|---|
| String |
The application’s title.
|
XafApplication.Title specifies the application’s name in the UI, for example, in the application’s windows or messages. The IModelApplication.Title property of the Application Model‘s Application node defines the default application title.
To specify the application’s title in code, use the XafApplication.Title property.
To specify the application’s title in the Model Editor, use the IModelApplication.Title property. In this case, you can localize the application’s title.
An application has another name specified by the XafApplication.ApplicationName property. This name is for internal use only.
The following code snippets (auto-collected from DevExpress Examples) contain references to the Title property.
Note
The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.
xaf-how-to-import-data-in-xaf/CS/WinWebSolution.Web/Error.aspx.cs#L33
if(WebApplication.Instance != null) {
ApplicationTitle.Text = WebApplication.Instance.Title;
}
if(WebApplication.Instance != null) {
ApplicationTitle.Text = WebApplication.Instance.Title;
}
if(WebApplication.Instance != null) {
ApplicationTitle.Text = WebApplication.Instance.Title;
}
xaf-how-to-enforce-password-complexity-in-xaf/CS/Solution161.Web/Error.aspx.cs#L34
if(WebApplication.Instance != null) {
ApplicationTitle.Text = WebApplication.Instance.Title;
}
if(WebApplication.Instance != null) {
ApplicationTitle.Text = WebApplication.Instance.Title;
}
xaf-how-to-import-data-in-xaf/VB/WinWebSolution.Web/Error.aspx.vb#L36
If WebApplication.Instance IsNot Nothing Then
ApplicationTitle.Text = WebApplication.Instance.Title
Else
If WebApplication.Instance IsNot Nothing Then
ApplicationTitle.Text = WebApplication.Instance.Title
Else
If WebApplication.Instance IsNot Nothing Then
ApplicationTitle.Text = WebApplication.Instance.Title
Else
xaf-how-to-enforce-password-complexity-in-xaf/VB/Solution161.Web/Error.aspx.vb#L26
If WebApplication.Instance IsNot Nothing Then
ApplicationTitle.Text = WebApplication.Instance.Title
Else
If WebApplication.Instance IsNot Nothing Then
ApplicationTitle.Text = WebApplication.Instance.Title
Else
See Also