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

Retrieving a list of all wxPython events is possible with:

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

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

+3
source share

Source: https://habr.com/ru/post/1752585/


All Articles