How to bring a widget to the front of another widget? I want to put the timeLeft Label in front of the box DrawingArea
My Code :
box.SetSizeRequest((int)Math.Floor(size*2.5), size);
box.ExposeEvent += boxExpose;
theMainWindow.winFix.Put(box, x, y);
box.Show();
Pango.FontDescription fontdesc = Pango.FontDescription.FromString("Lucida Console " + (size - 6));
timeLeft.ModifyFont(fontdesc);
timeLeft.SetSizeRequest((int)Math.Floor(size*2.5)-6, size-6);
theMainWindow.winFix.Put(timeLeft, x+3, y+3);
timeLeft.Show();