You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
339 B
C++
18 lines
339 B
C++
4 years ago
|
#ifndef WXMAIN_HPP_
|
||
|
#define WXMAIN_HPP_
|
||
|
|
||
|
#include <wx/frame.h>
|
||
|
#include <wx/stattext.h>
|
||
|
|
||
|
class MainFrame : public wxFrame
|
||
|
{
|
||
|
public:
|
||
|
MainFrame() : wxFrame(nullptr, -1, "Hello world", wxPoint(50, 50), wxSize(640, 480))
|
||
|
{
|
||
|
auto lTitle = new wxStaticText(this, wxID_ANY, "Welcome to the GUI.");
|
||
|
}
|
||
|
};
|
||
|
|
||
|
#endif // WXMAIN_HPP_
|
||
|
|