- m_btnFocused = new wxButton(this, -1, "Default button");
- m_btnDelete = new wxButton(this, -1, "&Delete button");
- wxButton *btnOk = new wxButton(this, wxID_CANCEL, "&Close");
- sizerTop->Add(m_btnFocused, 0, wxALIGN_CENTER | wxALL, 5);
+ m_btnModal = new wxButton(this, -1, _T("&Modal dialog..."));
+ m_btnModeless = new wxButton(this, -1, _T("Mode&less dialog"));
+ m_btnDelete = new wxButton(this, -1, _T("&Delete button"));
+
+ wxButton *btnOk = new wxButton(this, wxID_CANCEL, _T("&Close"));
+ sizerTop->Add(m_btnModal, 0, wxALIGN_CENTER | wxALL, 5);
+ sizerTop->Add(m_btnModeless, 0, wxALIGN_CENTER | wxALL, 5);