DelphiDelphiVCLPythonPython GUIWindows

Python GUI: Create A ComboBox To Select A Color With DelphiVCL.ColorBox

DelphiVCL.ColorBox represents a combo box that lets users select a color. Use ColorBox to provide the user with a drop-down combo box from which to select a color. Use the Style property to specify which colors the color box should list. Each color is displayed next to a small square that is drawn in the corresponding color. Use the Selected property to access the color that the user…
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
DelphiDelphiVCLPythonPython GUIWindows

Python: Getting Started with DelphiVCL4Python III: Overview of Commonly Used VCL Components

To increase your familiarity with DelphiVCL Components, this post will show you a demo that presents commonly used VCL components, and call them one-by-one with Python. The following is a Python code sample using DelphiVCL4Python: from delphivcl import * class MainForm(Form): def __init__(self, Owner): self.Caption = "Components Overview Sample" self.Name = "BaseForm" …
Read more