I want to add a next page for my appdesigner, how do I code the 'next page' button to lead me from homepage to next pagee?
45 ビュー (過去 30 日間)
古いコメントを表示
I can't find any helpful ideas in youtube, I guess here, some can answer me
0 件のコメント
回答 (2 件)
Shreeya
2024 年 2 月 29 日
Hello
To create a multi window app in MATLAB App designer, you can refer to the following documentation page:
Apart from this, the tab group in the app designer can also be used for a multi-page application. You can start by creating a button in tab1 which redirects to tab2.
Below is an exampe code of the callback function of a button which redirects to a new tab.
function ButtonPushedCallback(app, event)
app.TabGroup.SelectedTab = app.Tab2;
end
0 件のコメント
Voss
2024 年 3 月 6 日
Here's a simple app with a tab group and two buttons that navigate back and forth through the tabs. The tab group is taller than the figure so that you don't see the tab titles, making it look and feel more like navigating through webpages.
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Develop Apps Using App Designer についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!