wxPython – wx.Button 中的 GetDefaultSize()函数
在本文中,我们将学习与 wxPython 的 wx.Button 类关联的 GetDefaultSize()函数。 GetDefaultSize()函数用于返回按钮的默认大小。
建议使所有对话框按钮的大小相同,并且此函数允许检索最适合此的(平台和当前字体相关的)大小。
Syntax: wx.Button.GetDefaultSize(win=None)
Parameters:
Parameter | Input Type | Description |
---|---|---|
win | wx.Window | Parent Window. |
Return Type: wx.Size
代码示例:
import wx
class Example(wx.Frame):
def __init__(self, *args, **kwargs):
super(Example, self).__init__(*args, **kwargs)
self.InitUI()
def InitUI(self):
self.pnl = wx.Panel(self)
self.btn = wx.Button(self.pnl, label ='Button',
pos =(20, 20), size =(100, 20))
# GET DEFAULT SIZE
s = self.btn.GetDefaultSize(self)
# PRINT DEFAULT SIZE
print(s)
self.SetSize((350, 250))
self.SetTitle('wx.Button')
self.Centre()
def main():
app = wx.App()
ex = Example(None)
ex.Show()
app.MainLoop()
if __name__ == '__main__':
main()
控制台输出:
(88, 26)
输出窗口: