DelphiDelphiVCLLearn PythonPythonPython GUIWindows

What is The Delphi VCL For Python And Why Is It So Good?

DelphiVCL is a powerful framework for creating excellent, modern, graphical user interfaces (GUIs) for your Python programs. DelphiVCL is independent of Delphi and does not require Delphi to be installed. However, you can make use of Delphi’s powerful IDE software and its easy-to-use designers (available even in the free Community Edition) to visually design and advance your user interface for…
Read more
DelphiDelphiVCLPythonPython GUIWindows

What Are Bi-Directional Properties In DelphiVCL Applications?

What is Bi-Directional (BiDi)? Some languages do not follow the left to right reading order commonly found in Western languages, but rather use the right to left reading order for words and the left to right reading order for numbers. These languages are termed bi-directional (BiDi) because of this separation. The most common bi-directional languages are Arabic and Hebrew, although other Middle…
Read more
DelphiDelphiVCLPythonPython GUIWindows

This Is How The OnGetMainFormHandle Event Works

For development on Windows OnGetMainFormHandle or DelphiVCL.Application.OnGetMainFormHandle is the event triggered when reading the value of the MainFormHandle property. Let’s take a look at all of DelphiVCL.Application.OnGetMainFormHandle properties and methods: import DelphiVCL dir(DelphiVCL.Application.OnGetMainFormHandle) See the responses in our Windows command…
Read more
DelphiDelphiVCLPythonPython GUIWindows

What You Need To Know About The Observers Property

In windows app development, the Observers or DelphiVCL.Application.Observers property indicates the TObservers object added to the TComponent. Observers is a read-only property that returns the TObservers added to the TComponent, in order to use the notifications provided by the observers either with LiveBindings or for the developers’ own purposes. Let’s browse all the properties…
Read more