Learn PythonPythonPython GUIVideos

Learn Python With Master the Basics of Tkinter - Full Tkinter Programming Course Video

If you are planning to create your first Graphical User Interface application, the first thing you must consider is to pick the right GUI framework. There are many available GUI frameworks to choose from including PyQT5, Kivy, PyForms, and WxPython. However, when it comes to simplicity and ease of use, the Tkinter is by far the best and most practical option for beginners. In this video…
Read more
DelphiDelphiVCLPythonPython GUIWindows

Learn About DelphiVCL.CustomEdit

DelphiVCL.CustomEdit is the base class from which all edit-box and memo controls are derived. DelphiVCL.CustomEdit or TCustomEdit encapsulates the behavior common to all components for editing text by introducing methods and properties that provide: Basic text editing functions such as selecting the text, modifying selected text, and case conversions. Ability to respond to…
Read more
DelphiDelphiVCLPythonPython GUIWindows

Create A Drawing Space Using DelphiVCL.Canvas

DelphiVCL.Canvas provides an abstract drawing space for objects that must render their own images. Use DelphiVCL.Canvas as a drawing surface for objects that draw an image of themselves. Standard window controls such as edit controls or list boxes do not require a canvas, as they are drawn by the system. DelphiVCL.Canvas provides properties, events, and methods that assist in…
Read more
DelphiDelphiVCLLearn PythonPythonPython GUIWindows

Understanding Python's main() for GUI Development with DelphiVCL

main() function is like the entry point of a program. However, the Python interpreter runs the code right from the first line. The execution of the code starts from the starting line and goes line by line. It does not matter where the main function is present or it is present or not. Since there is no main() function in Python, when the command to run a Python program is given to the…
Read more