mirror of
https://github.com/wxWidgets/Phoenix.git
synced 2026-01-09 13:30:08 +01:00
11 lines
384 B
Python
11 lines
384 B
Python
|
|
if wx.Platform == '__WXMSW__':
|
|
# wxMSW is one of the platforms where the generic implementation
|
|
# of wx.FilePickerCtrl is used...
|
|
|
|
pButt = myFilePickerCtrl.GetPickerCtrl()
|
|
|
|
if pButt is not None:
|
|
pButt.SetLabel('Custom browse string')
|
|
|