Color change wxNotebook.

If you are using wxDev-C++ for your wxWidgets design, please ask your questions here instead of in IDE Related.
Post Reply
palikem
Experienced Solver
Experienced Solver
Posts: 69
Joined: Sat Oct 28, 2017 9:33 am
Location: Slovensko

Color change wxNotebook.

Post by palikem »

Hi everybody.

Does anyone know how to change the background color ?

Code: Select all

	WxNotebook1 = new wxNotebook(this, ID_WXNOTEBOOK1, wxPoint(0, 30), wxSize(795, 535), wxNB_DEFAULT | wxNB_MULTILINE);
	WxNotebook1->SetForegroundColour(wxColour(0,0,0));
	WxNotebook1->SetBackgroundColour(wxColour(_("WHITE")));
	WxNotebook1->SetFont(wxFont(10, wxSWISS, wxNORMAL, wxNORMAL, false, _("MS Sans Serif")));

	Measurement = new wxPanel(WxNotebook1, ID_MEASUREMENT, wxPoint(4, 27), wxSize(787, 504));
	Measurement->SetBackgroundColour(wxColour(_("WHITE")));
	Measurement->SetFont(wxFont(15, wxSWISS, wxNORMAL, wxNORMAL, false, _("MS Sans Serif")));
	WxNotebook1->AddPage(Measurement, _("   Measurement   "));
	
	Calibration = new wxPanel(WxNotebook1, ID_CALIBRATION, wxPoint(4, 27), wxSize(787, 504));
	Calibration->SetBackgroundColour(wxColour(_("WHITE")));
	Calibration->SetFont(wxFont(10, wxSWISS, wxNORMAL, wxNORMAL, false, _("MS Sans Serif")));
	WxNotebook1->AddPage(Calibration, _("   Calibration   "));
frame.jpg
Windows 8.1
WxDev-C++ IDE 7.4.2.569
coderrc
Earned some good credits
Earned some good credits
Posts: 141
Joined: Tue Nov 01, 2016 2:46 pm

Re: Color change wxNotebook.

Post by coderrc »

under windows my gut tells me that you cant. It will default to the system's control color.

if it really bothers you to death, you might goof around with the solutions offered here.
https://stackoverflow.com/questions/280 ... background
Post Reply