Python – wxPython 中的 Move()函数
在这篇特定的文章中,我们将学习如何将窗口移动到特定点。这可以使用 wxPython 的 wx.Window 类中的 Move()函数来实现。
Move() 采用 x 和 y 点将窗口移动到特定的 x、y 点。
Syntax :
Parameters :
Parameter | Input Type | Description |
---|---|---|
x | int | Required x position. |
y | int | Required y position. |
flag | int | flag for SetSize. |
代码示例 #1:
wx.Move(self, x, y, flags=SIZE_USE_EXISTING)
输出:
代码示例 #2:
# import wxPython
import wx
# frame class
class MoveWindow(wx.Frame):
def __init__(self, parent, title):
super(MoveWindow, self).__init__(parent, title = title,
size =(300, 200))
# move window using Move() function
self.Move((500, 250))
def main():
app = wx.App()
move = MoveWindow(None, title ='Move()')
move.Show()
app.MainLoop()
if __name__ == '__main__':
main()
输出: