Search found 2 matches

by loic.lopez
Tue May 30, 2017 8:30 am
Forum: Beginners Help
Topic: transparent TabControl
Replies: 7
Views: 1272

Re: transparent TabControl

yes i have tried but with no result :

There remains an apparent border

Image

https://www.noelshack.com/2017-22-1496132881-menu.png
by loic.lopez
Mon May 29, 2017 7:52 pm
Forum: Beginners Help
Topic: transparent TabControl
Replies: 7
Views: 1272

transparent TabControl

Hi,

i have used this code to make my tab control transparent :

for (irr::s32 i=0; i < irr::gui::EGDC_COUNT; ++i)
{
irr::video::SColor col = this->skin->getColor((irr::gui::EGUI_DEFAULT_COLOR)i);
col.set(0, 0, 0, 0);
this->skin->setColor((irr::gui::EGUI_DEFAULT_COLOR)i, col);
}

but checkboxes ...