#!/usr/bin/python
# size
.py
import wx
class Size(wx.Frame):
def __init__(self, parent, id, title):
wx.Frame.__init__(self, parent, id, title, size=(250, 200))
self
.Show(True)
app
= wx.App()
Size(None, -1, 'Size')
app.MainLoop()
MethodDescriptionMove(wx.Point point)move a window to the given positionMoveXY(int x, int y)move a window to the given positionSetPosition(wx.Point point)set the position of a windowSetDimensions(wx.Point point, wx.Size size)set the position and the size of a window