DelphiDelphiVCLPythonPython GUIWindows

What is the ClassParent Method in Windows App Development?

The ClassParent method or DelphiVCL.Application.ClassParent is used during Windows app development to return the type of the immediate ancestor of a class. ClassParent returns the name of the parent class for an object instance or class reference. For TObject, ClassParent returns nil (Delphi) or NULL (C++). Avoid using ClassParent in application code. Let’s browse all the properties and…
Read more
DelphiDelphiVCLPythonPython GUIWindows

What You Need To Know About The Python GUI OnMinimize Event

OnMinimize or DelphiVCL.Application.OnMinimize occurs when a Python GUI DelphiVCL application is minimized. Write an OnMinimize event handler to perform special processing when the application is minimized. The application is minimized either because the user minimizes the main window or because of a call to the Minimize method. The Icon property determines the icon that represents the…
Read more
DelphiDelphiVCLPythonPython GUIWindows

What Is A DelphiVCL.Timer In The DelphiVCL Windows UI Toolkit

As a part of the DelphiVCL Windows UI Toolkit the DelphiVCL.Timer or TTimer is used to encapsulate the Windows API timer functions. TTimer is used to simplify calling the Windows API timer functions SetTimer and KillTimer, and to simplify processing the WM_TIMER messages. Use one timer component for each timer in the application. The execution of the timer occurs through its OnTimer event.
Read more
DelphiDelphiVCLPythonPython GUIWindows

How To Use The Action Parameter In DelphiVCL Windows Development

The Action parameter in DelphiVCL is used to specify the action associated with the control when carrying out Windows development. Action is the action object that is associated with the control. Actions allow an application to centralize the response to user commands. When control is associated with an action, the action determines the appropriate properties and events of the control (such as…
Read more