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
DelphiDelphiVCLPythonPython GUIWindows

Python: Getting Started with DelphiVCL4Python II: Breakdown The Form Components

This post will break down the code example to create a simple Form app as presented in the previous post. These steps are essential for Python Developers to be familiar with Delphi VCL methods, events, and properties, to enable you in creating professional Windows Apps, without installing Delphi. Below are the explanations of code example in the previous post: Import the module: from…
Read more
DelphiDelphiVCLPythonPython GUIWindows

OnDblClick Event in DelphiVCL4Python Library

OnDblClick event occurs when the user double-clicks the left mouse button when the mouse pointer is over the control. We use the OnDblClick event to respond to mouse double-clicks. OnDblClick is an event handler of type System.Classes.TNotifyEvent. What is TNotifyEvent? TNotifyEvent is used for events that do not require parameters. The TNotifyEvent type is the type…
Read more