DelphiDelphiVCLPythonPython GUIWindows

How to use the State Property

State property is used as an indicator for which items are selected or checked. For example, for each member of the Items array, we use State to determine whether the checkbox is selected (cbChecked), cleared (cbUnchecked), or dimmed (cbGrayed). Note: cbGrayed corresponds to the indeterminate state. State combines the information provided by the Boolean Checked property and the…
Read more
DelphiDelphiVCLIDELearn PythonPythonPython GUIRAD StudioWindows

Python For Delphi VCL vs Python GUI Generator: wxGlade

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

Learn About DelphiVCL.Application.DestroyComponents

The DestroyComponents method or DelphiVCL.Application.DestroyComponents is used to destroy all owned components. DestroyComponents iterates through the components owned by the component, removing each from the list of owned components and destroying it. It is not necessary to call DestroyComponents directly. DestroyComponents is automatically called when the component is…
Read more
DelphiDelphiVCLPythonPython GUIWindows

Specifies the Default Font used by the Application using DelphiVCL.Application.DefaultFont

Use the DefaultFont property or DelphiVCL.Application.DefaultFont to specify the default font used by the application. DefaultFont specifies the default font used by the application. All newly created forms use DefaultFont if the ParentFont property is set to True. Changing DefaultFont later at run-time will trigger an update for all forms that use the parent font. Let’s browse all…
Read more