DelphiDelphiVCLPythonPython GUIWindows

What is ActionUpdateDelay Property in DelphiVCL.Application?

ActionUpdateDelay property or DelphiVCL.Application.ActionUpdateDelay used to delay the call to DoActionIdle. This applies to native Windows development. The following example demonstrates the usefulness of this property: Create an MDI project with the main form, an MDI Child, and a TAction class.Link the TAction OnUpdate event to a method.Run the program and maximize the MDI child. If you…
Read more
DelphiDelphiVCLLearn PythonPythonPython GUIWindows

This Is How Python's Self Works In Windows Development

Whenever object-oriented programming is done in Python, then we will often come across the self method as their first parameter. This article explains the main concept of self method in Python for Windows development. self represents the instance of the class in Python. By using the “self” keyword we can access the attributes and methods of the class in Python. It binds the attributes with…
Read more
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