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