How do I make a widget initialize as "invisible" in App Designer?

8 visualizaciones (últimos 30 días)
I have an app where I've altered the functionality such that certain widgets are no longer used. Unfortunately, I don't want to delete them outright since I've been using their associated structures to hold various bits of data that I frequently query with the remaining widgets. I would like to make them completely invisible in the figure window though. Currently, I've moved them into the background or off the actual figure, but sometimes their imprints or "echoes" still appear. I saw that there is a 'visible' property for these widgets (ie: app.widgetname.Visible='off'), but I only know how to set this property after I've actually triggered a callback within my application. Is there a way to get the application to initially set these features as invisible when the application is started before any human interaction?

Respuesta aceptada

Jason Liu
Jason Liu el 27 de Ag. de 2019
When you click on "Run" for the .mlapp file in App Designer, this will trigger a startup function "startupFcn"(if you set up startup function in you app) to initialize the app. In your case, make sure you set those widgets to be invisible within the startup function. (Most of time the widgets were set visible by default)

Más respuestas (1)

Cris LaPierre
Cris LaPierre el 27 de Ag. de 2019
Editada: Cris LaPierre el 27 de Ag. de 2019
Set their visibility property to "off".
In Design View, select the component, and in the component browser (on the right) under Inspector, expand Interactivity and uncheck Visible.
  1 comentario
who what where
who what where el 27 de Ag. de 2019
Editada: who what where el 28 de Ag. de 2019
Oh wow....I thought I'd already looked through all those options in the properties tab. I don't know how I missed that! Thanks for the reply!
Edit: This worked just fine for a few of the widgets, but there were others that lacked this option. I ultimately set up a 'startupFcn' to hide those components.

Iniciar sesión para comentar.

Categorías

Más información sobre Develop Apps Using App Designer en Help Center y File Exchange.

Etiquetas

Productos


Versión

R2018a

Community Treasure Hunt

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

Start Hunting!

Translated by