--- /dev/null
+#include <wx/wx.h>
+#include "../widgets/XCCalendarMonthView.h"
+#include "../common/monthviewgen.h"
+
+class XCCalendarMonthViewTest: public wxApp
+{
+ virtual bool OnInit();
+};
+
+/*class MyFrame: public wxFrame
+{
+ private:
+ XCCalendarDay *XCCalWidget = nullptr;
+ wxBoxSizer *WindowSizer = new wxBoxSizer(wxVERTICAL);
+ public:
+ MyFrame(const wxString& title, const wxPoint& pos, const wxSize& size);
+};*/
+
+IMPLEMENT_APP(XCCalendarMonthViewTest);
+
+using namespace std;
+
+bool XCCalendarMonthViewTest::OnInit()
+{
+
+ XCCalendarMonthViewGrid MonthViewGrid = GenerateMonthGrid(6, 2016);
+
+ XCCalendarMonthView *frmMain = new XCCalendarMonthView("XCCalendarMonthView Test", wxPoint(50, 50), wxSize(200, 200), &MonthViewGrid);
+
+ frmMain->Show();
+ SetTopWindow(frmMain);
+
+ return true;
+
+}
\ No newline at end of file