+ /**
+ Returns the native implementation of the real picker control.
+
+ @note
+ The returned control in the generic implementation of wxFilePickerCtrl,
+ wxDirPickerCtrl, wxFontPickerCtrl and wxColourPickerCtrl is a specialized
+ wxButton class so that you can change its label doing, e.g.:
+ @code
+ #ifdef __WXMSW__
+ // wxMSW is one of the platforms where the generic implementation
+ // of wxFilePickerCtrl is used...
+
+ wxButton *pButt = wx_static_cast(wxButton*, myFilePickerCtrl->GetPickerCtrl());
+ if (pButt)
+ pButt->SetLabel("Custom browse string");
+ #endif
+ @endcode
+ */
+ wxControl* GetPickerCtrl();
+