Borrar filtros
Borrar filtros

I added a Background Image but now I can't see panels...

2 visualizaciones (últimos 30 días)
Jethro
Jethro el 2 de Feb. de 2012
Editada: Azzi Abdelmalek el 1 de Oct. de 2013
Hi everybody!
I set a background for my figure, but now, when I add a panel, I only see the title, the rest of the panel is transparent, and I see my background... There's something I can do?? I tried using "Bring to front" and "Send to back", no results!

Respuestas (3)

Walter Roberson
Walter Roberson el 3 de Feb. de 2012
That is the behavior you would get if the BackgroundColor property of the uipanel is 'none' . Perhaps you set the color explicitly in your uipanel() call? Or perhaps you have set the root property DefaultUipanelBackgroundColor that is set to 'none' ?
get(0,'DefaultUipanelBackgroundColor')
  4 comentarios
Jethro
Jethro el 3 de Feb. de 2012
Windows 7, Matlab 7.12.0 (R2011a), and the get returns me "painters"
Walter Roberson
Walter Roberson el 3 de Feb. de 2012
What happens if you try
set(gcf,'Renderer', 'OpenGL')

Iniciar sesión para comentar.


Sean de Wolski
Sean de Wolski el 3 de Feb. de 2012
H = uipanel(..)
What does:
get(H,'backgroundcolor')
return?
  5 comentarios
Sean de Wolski
Sean de Wolski el 3 de Feb. de 2012
I am not able to replicate this. If you run my three line of code above, the uipanel is on top of the blank white axes in a new figure?
Sean de Wolski
Sean de Wolski el 3 de Feb. de 2012
Perhaps it's your choice of liquor. I think the renderers prefer gin.

Iniciar sesión para comentar.


Jethro
Jethro el 4 de Feb. de 2012
Nothing to do...
I can't understand why when I don't see my background, everything it's ok, but when I use it, panels became transparent...
This is it:
With the BG
Without the BG
What's the problem???!
  3 comentarios
Jethro
Jethro el 5 de Feb. de 2012
Nope.. It's the same...
There's a way to bring to front my panel using code?
Walter Roberson
Walter Roberson el 5 de Feb. de 2012
What happens if you try
opengl hardware
set(gcf,'Renderer', 'OpenGL')
drawnow
and look at the output, and if that did not work,
opengl software
set(gcf,'Renderer', 'OpenGL')
drawnow
Your panel probably _is_ at the front from what you have described. (Your test works as expected for Sean and I.)

Iniciar sesión para comentar.

Categorías

Más información sobre Graphics Performance en Help Center y File Exchange.

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by