Closed shaunroselt closed 1 year ago
Hi @shaunroselt, we just added it to the backlog of the roadmap. We can try to wrap it and provide it as part of the following docs release version.
And also, there is a recent idea to create a youtube channel around our Delphi-Python Ecosystem. We plan to make tutorials on developing small to large-scale GUI applications using our Python packages. We also plan to create a tutorial to wrap any missing component by the community themselves.
Thanks.
That's good to hear. I'm also planning lots of YouTube videos around this.
Adding TPopUpMenu to the roadmap.
Actually it has been wrapped before. See the image below:
Oh. I see my fault. I tried doing:
self.myPopUpMenu = PopUpMenu(self)
Which doesn't work. It needs to be:
self.myPopUpMenu = PopupMenu(self)
Thanks!
Sorry, I posted a VCL sample but it shall work with FMX too.
I tried creating a
PopUpMenu
for one of my apps but seems like there isn't a wrapper for thePopUpMenu
yet.Are there any plans to add the PopUpMenu? Would really like to be able to have a PopUpMenu in my apps.
Is there maybe a tutorial or something around that can teach me how to make my own wrapper for a component?