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

9 Ansichten (letzte 30 Tage)
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?

Akzeptierte Antwort

Jason Liu
Jason Liu am 27 Aug. 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)

Weitere Antworten (1)

Cris LaPierre
Cris LaPierre am 27 Aug. 2019
Bearbeitet: Cris LaPierre am 27 Aug. 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 Kommentar
who what where
who what where am 27 Aug. 2019
Bearbeitet: who what where am 28 Aug. 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.

Melden Sie sich an, um zu kommentieren.

Kategorien

Mehr zu Develop Apps Using App Designer finden Sie in Help Center und File Exchange

Produkte


Version

R2018a

Community Treasure Hunt

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

Start Hunting!

Translated by