Site icon Python GUI

Decipher the DelphiVCL.Application

DelphiVCL.Application is the type used for a GUI windowed application. Application encapsulates a windowed application. The methods and properties introduced in the Application reflect the fundamentals established in the Windows operating system to create, run, sustain, and destroy an application.

Application thereby simplifies the interface between the developer and the Windows environment. For this purpose, the Application encapsulates behavior for:

Each GUI application automatically declares an Application variable as the instance of the application. If the application is not a Web server application, control panel applet, or NT service application, this variable is of type Application.

Application does not appear on the Component palette, nor is it available in the form designer to visually manipulate; so it has no published properties. 

We can browse all the properties, methods, and built-in properties of the DelphiVCL.Application in Python using dir() command:

[crayon-660526aaf03cd795209502/]

See the responses in command prompt:

Let’s create a Python main function that can run and close an application window:

[crayon-660526aaf03d6816185533/]

 

Check out DelphiVCL which easily allows you to build GUIs for Windows using Python.

Watch this comprehensive introduction to Python GUI Development with DelphiVCL library video by Jim McKeeth:

Exit mobile version