开发者

List of all style parameters used in the wx.Frame style bitmask

开发者 https://www.devze.com 2023-01-05 20:45 出处:网络
Gettin开发者_开发技巧g a listing of all wxPython events is possible using: import wx for x in dir(wx):

Gettin开发者_开发技巧g a listing of all wxPython events is possible using:

import wx
for x in dir(wx):
    if x.startswith('EVT_'):
     print x

How do I get the list of all style parameters used in defining the wx.Frame style bitmask?

0

精彩评论

暂无评论...
验证码 换一张
取 消