DelphiFMX4Python
DelphiFMX4Python copied to clipboard
Python GUI module powered by Delphi's FireMonkey framework. Supporting Windows, MacOS, Linux, and Android GUI development.
Hi, @jimmckeeth @chuacw @checkdigits @juliomar @shaunroselt ~ Many Thanks for Good GUI F/W using delphi !! I want to code something like this: "Display an image within a window, If...
Normally in `Delphi` I would do `Memo1.VScrollBar.Value := self.Memo1.VScrollBar.Max;` to scroll to the bottom of a `Memo`. I tried doing this in `Python`, but it doesn't work. Here's a code...
Anyone interested in creating such a project? Refer to: https://github.com/LukasMasuch/streamlit-pydantic It should be possible to automatically generate FMX/VCL form from Pydantic models. Then a lot of applications could be based...
I'm in trouble again. It seems that D4P cannot work with Python threads. The threads I create in Python will be blocked by Delphi UI. Is there any way to...
Dear Embarcadero, Similiar to DelphiFMX4Python I build an API to make use of Delphi FMX from the D Programming Language https://github.com/andre2007/delta-core-10-2-1 https://github.com/andre2007/delta-fmx-10-2-1 ## Sample ``` d import delta.core; import System.Classes,...
Does Delphi4Python support plug-ins? I hope to add my customized classes to delphifmx/delphivcl for collaborative work
How to correctly use multithreading or multiprocessing to update information on a form in real-time?
I have tried various methods, and all of them have various issues. 1. Updating the main thread's form in a child thread, obviously, it failed. ``` from delphifmx import *...
*** Python 3.10.6 (tags/v3.10.6:9c7b4bd, Aug 1 2022, 21:53:49) [MSC v.1932 64 bit (AMD64)] on win32. *** *** Remote Python engine is active *** >>> *** Remote Interpreter Reinitialized *** >>>...
In the Windows platform, how to implement a TrayIcon using DelphiFMX? I found it in VCL, but I couldn't find it in DelphiFMX, and I don't know how to implement...