This code:
import wx
app = wx.App()
frame = wx.Frame(None, style = wx.DEFAULT_FRAME_STYLE & ~wx.CAPTION)
frame.Maximize()
frame.Show()
app.MainLoop()
Produce a frame covering the whole screen, including my taskbar. Is there a way to make it only take up the screen not taken by the taskbar?
OS: Windows XP
Python: 2.7.3
- WxPython: 2.9.3.1