Changing of Panel Border Color

70 visualizaciones (últimos 30 días)
Mathias Gießler
Mathias Gießler el 1 de Feb. de 2022
Movida: Adam Danz el 17 de Mzo. de 2023
Hi,
is it possible to change the border color of a panel?
I tryed
app.Panel.HighlightColor = 'g';
but I get the warning "Functionality not supported with figures created with the uifigure function. For more information, see Graphics Support in App Designer."
In the support text, I not found a solution. Is there a way to change the color?
Kind regards.

Respuesta aceptada

Geoff Hayes
Geoff Hayes el 1 de Feb. de 2022
@Mathias Gießler - from Panel Properties, it says something similar: This property is valid only for panels in apps created using the figure function. So if you were to create the panel for a figure rather than a uifigure, then this would work. i.e.
fig = figure;
p = uipanel(fig);
p.Title = 'Display Options';
p.HighlightColor = 'r'
So no, I don't think that you can change the highlight color due to the way the app is created. You can change the BackgroundColor and ForegroundColor though.
  1 comentario
Martin Tarlie
Martin Tarlie el 8 de Jun. de 2022
It would be really, really handy from a UI perspective to be able to change the HighlightColor when the parent is a uifigure. Any idea as to how technically challenging this is, and whether or not a change is in the works?

Iniciar sesión para comentar.

Más respuestas (1)

Max Kehrer
Max Kehrer el 16 de Mzo. de 2023
Movida: Adam Danz el 17 de Mzo. de 2023
@Martin Tarlie R2023a finally introduced the uipanel property 'BorderColor' which replaces 'HighlightColor' (See Panel Properties version history).
In my opinion this was already highly overdue because they just took away the functionality for years without a replacement until now.

Categorías

Más información sobre Maintain or Transition figure-Based Apps en Help Center y File Exchange.

Etiquetas

Productos


Versión

R2020a

Community Treasure Hunt

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

Start Hunting!

Translated by