1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
#include "GeneralPropertiesForm.h" GeneralPropertiesForm::GeneralPropertiesForm(wxWindow* parent) : GeneralPropertiesFormBase(parent) { } GeneralPropertiesForm::~GeneralPropertiesForm() { } void GeneralPropertiesForm::OnButtonOKClick(wxCommandEvent& event) { if(ValidateData()) EndModal(wxID_OK); } bool GeneralPropertiesForm::ValidateData() { return true; }