mirror of
https://github.com/wxWidgets/Phoenix.git
synced 2026-01-08 21:10:06 +01:00
10 lines
214 B
Python
10 lines
214 B
Python
|
|
class MyPropertyClass(wx.propgrid.FloatProperty):
|
|
...
|
|
def DoGetValidator(self):
|
|
validator = MyValidator(...)
|
|
|
|
... prepare validator...
|
|
|
|
return validator
|