wxPython - very small frame

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Francach

    #1

    wxPython - very small frame

    Hi,

    I'd like to create a very small Frame without the usual minimise and
    maximise icons on the top. Does anyone know how to do this with
    wxPython? I've tried creating a Frame with the style wx.DOUBLE_BORDE R,
    which gives me a nice small window. But I can't move it around the
    screen.

    Thanks,
    Martin.

  • Wildemar Wildenburger

    #2
    Re: wxPython - very small frame

    Francach wrote:
    Hi,
    >
    I'd like to create a very small Frame without the usual minimise and
    maximise icons on the top. Does anyone know how to do this with
    wxPython? I've tried creating a Frame with the style wx.DOUBLE_BORDE R,
    which gives me a nice small window. But I can't move it around the
    screen.
    There is the wx.FRAME_TOOL_W INDOW style (which is nice, but the frame
    won't be listed in the taskbar).

    But right now you're probably looking for wx.CAPTION (have you, by any
    chance, only looked up the styles for wx.Window, neglecting the ones of
    wx.Frame?)

    hope that does it.
    wildemar
    (btw: you might want to ask such questions on the wxPython list instead)

    Comment

    Working...