expressappframework-devexpress-dot-expressapp-dot-win-dot-winapplication-e1387deb.md
Starts the Windows Forms application.
Namespace : DevExpress.ExpressApp.Win
Assembly : DevExpress.ExpressApp.Win.v25.2.dll
NuGet Packages : DevExpress.ExpressApp.Win, DevExpress.ExpressApp.Win.Design
public void Start()
Public Sub Start
The Start method is called in the Main method, after creating the WinApplication object and calling the XafApplication.Setup method.
The following code snippets (auto-collected from DevExpress Examples) contain references to the Start() method.
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.
winApplication.Setup();
winApplication.Start();
}
XAF-implement-custom-permission-role-and-user-objects/CS/SecuredExportExample.Win/Program.cs#L51
winApplication.Setup();
winApplication.Start();
}
_application.Setup();
_application.Start();
} catch (Exception e) {
xaf-how-to-import-data-in-xaf/CS/WinWebSolution.Win/Program.cs#L30
winApplication.Setup();
winApplication.Start();
} catch (Exception e) {
winApplication.Setup();
winApplication.Start();
} catch (Exception e) {
winApplication.Setup()
winApplication.Start()
Catch e As Exception
winApplication.Setup()
winApplication.Start()
wcfSecuredClient.Dispose()
_application.Setup()
_application.Start()
Catch e As Exception
xaf-how-to-import-data-in-xaf/VB/WinWebSolution.Win/Program.vb#L34
winApplication.Setup()
winApplication.Start()
Catch e As Exception
winApplication.Setup()
winApplication.Start()
Catch e As Exception
See Also