フィルターのクリア

MATLAB App Designer: How can I hide few of my app components when i run the app?

112 ビュー (過去 30 日間)
I am trying to create an App where i want to hide some of the components intitially when I run the App. Could someone help me how to do it?
Your help would be highly appreciated. Thank you.

採用された回答

Kojiro Saito
Kojiro Saito 2019 年 10 月 25 日
編集済み: Kojiro Saito 2019 年 10 月 25 日
For example, from Component Browser, select app.UIFigure and add StartupFcn callback.
Then in Code View, you can add startupFcn as the follows. You can make components invisible by changing Visible property of components.
function startupFcn(app)
app.Button.Visible = 'off'; % For button
app.UIAxes.Visible = 'off'; % For axes
end
Please replace app.Button or app.UIAxes to your existing components names.
And if you want to make them visible, change Visible properties to 'on'.
app.Button.Visible = 'on';
app.UIAxes.Visible = 'on';
  4 件のコメント
Parth Dethaliya
Parth Dethaliya 2020 年 5 月 13 日
How can perform the same operation for a group? I mean i created group in design view now i wants to change visibility of the whole group!!
Eddie Burdak
Eddie Burdak 2021 年 1 月 14 日
if the group is in a container (eg Panel) - just turn the containers visibility on and off

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeDevelop Apps Using App Designer についてさらに検索

製品

Community Treasure Hunt

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

Start Hunting!

Translated by