python (65.1k questions)
javascript (44.2k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (12.9k questions)
How to add smaller panel on top of existing panel inside frame? - WXPYTHON
Below I have an example of my code, you can drag and drop an image from your desktop into the window and it will change the image in the app. I want to only drag/drop images into the image, not the bo...
Ruthless
Votes: 0
Answers: 0
wxPython: How can I display time into my wxFrame?
I am trying to make a program that displays stock information and displays the total loss or gain and the date and time. It is for a python assignment and I have been working on this part alone for a ...
Crypric_Athena
Votes: 0
Answers: 0
Prevent title/toolbar inlining on macOS using wxPython
With
tb = myFrame.CreateToolBar()
tb.AddTool(wx.ID_ANY, 'A', wx.Bitmap("plus.png"))
tb.AddStretchableSpace()
tb.AddTool(wx.ID_ANY, 'B', wx.Bitmap("plus.png"))
tb.Realize()
I get
...
sr3
Votes: 0
Answers: 1
Draw in wx.PaintDC
I am trying to create a canvas and draw on it based on the position of the mouse cursor.
Example:
class Lienzo:
def __init__(self):
super().__init__()
self.app2 = wx.App()
self.ventana2...
dante33
Votes: 0
Answers: 1