How do I best get a full display screen window using wxPython?
Recommended Answers
Jump to PostA simple way would be to use wx.DisplaySize() as the size tuple of your frame ...
import wx class Frame1(wx.Frame): def __init__(self): """ create a frame, size is full display size, wx.DisplaySize() gives width, height tuple of display screen """ wx.Frame.__init__(self, None, wx.ID_ANY, 'Full display size', pos=(0, …
Jump to PostI have a question to add to this. I have chosen wxPython for a project because im familiar with it. The question is this:
Is it possible to run wxPython frames in a 'kiosk' mode, whereby the frame takes up the whole viewable area of the user's screen, and …
All 5 Replies
vegaseat
1,735
DaniWeb's Hypocrite
Team Colleague
bumsfeld
413
Nearly a Posting Virtuoso
Matt1776
0
Newbie Poster
Matt1776
0
Newbie Poster
vegaseat
1,735
DaniWeb's Hypocrite
Team Colleague
Be a part of the DaniWeb community
We're a friendly, industry-focused community of 1.20 million developers, IT pros, digital marketers, and technology enthusiasts learning and sharing knowledge.