我想在 size 函数中使用 wxpython 绘制布局 下面是绘制布局的代码 我如何以 % 的形式提及大小(例如 size=("20%","20%") 或如何转换像素成 %。
# -*- coding: utf-8 -*-
# size.py
import wx
class Example(wx.Frame):
def __init__(self, parent, title):
super(Example, self).__init__(parent, title=title,
size=(250, 200))
self.Show()
if __name__ == '__main__':
app = wx.App()
Example(None, title='Size')
app.MainLoop()