SystemDialog::SetOKButtonText
void SetOKButtonText (const char * text);
Parameters
- text
Null terminated string.
Description
Note: on some operating systems the supplied text is not allways displayed,
just when the user can close the dialog with the default button.
Example
DG::FileDialog dlg (DG::FileDialog::OpenMultiFile); dlg.SetTitle ("Custom Open File"); dlg.SetOKButtonText ("Open!"); dlg.SetCancelButtonText ("Cancel!"); dlg.Invoke ();