DelphiDelphiVCLPythonPython GUIWindows

ActionList in DelphiVCL4Python

ActionList or TActionList maintains a list of actions that your application can take in response to something a user does, such as components and controls (e.g. menu items and buttons). Use Action lists to centralize the response to user commands (actions). Action list components maintain a list of actions that are available to the client controls in an application. This lets you share…
Read more
DelphiDelphiVCLPythonPython GUIWindows

Discover Available delphivcl.Form Methods, Properties, and Events!

The documentation for Delphi’s VCL is available on Embarcadero’s DocWiki. You will notice that on DocWiki, all the VCL components are prefixed with a T. This is a convention of the Delphi language, but the DelphiVCL4Python module removes the T prefix for a more Python-like experience (see and compare it with the outputs of this post). Here are the lists of all the methods, events, and…
Read more
DelphiDelphiVCLPythonPython GUIWindows

How to use the Show Method for DelphiVCL4Python Applications

We use the Show method to make a form or window visible. Use the Show method to make visible a control that was previously hidden. The Show method sets the control’s Visible property to true and ensures that the parent control is also visible. Here is the working example of the implementation of the Show method: def main(): Application.Initialize() …
Read more
DelphiDelphiVCLIDELearn PythonPythonPython GUIRAD StudioWindows

Compare Python For Delphi VCL vs Dear PyGUI For Windows Apps

Are you an expert in desktop apps and GUI development who want to also work with Python because of its simplicity, flexible use, and growing demand in the market out there? Or are you a Python Developer at any level who wants to start a GUI development journey? This article is for you. We will review the two examples of the most powerful Python Desktop App and GUI Frameworks:Python For…
Read more