Hey,
i just started recently with wxwidgets, so i am a beginner.
I have trouble to get the size for my panel, i get them
but the dimensions are wrong.
The size is needed to match it with a image.
so when the panel grows, the image has to grow too.
Here is the way how i get the size :
...............
int x;
int y;
GetSize(&x,&y);
...............
its in the .cpp of the panel which i want to get the size from..
many thanks and best regards,
i was able to solve it :D
the values were constantly on 20 .
with this method i get the real values..
but thanks.
..............................................................................................................
void PlatzPanel::OnMove(wxSizeEvent& event) {