appdesigner, choosing from dropdown different functions
古いコメントを表示
Hello,
I want to create a simple app in appdesigner in which i can choose from a dropdown menu different functions which are stored in scripts.
If I then click on a Startbutton the selected function should be applied.
I created a private property
properties (Access = private)
val ;
end
function DropDownValueChanged(app, event)
gh = app.DropDown.Value;
app.val=gh;
function StartButtonPushed(app, event)
if (app.val==(someText))
someMatlabscript;
end
An error is not shown but it does not work.
採用された回答
その他の回答 (0 件)
カテゴリ
ヘルプ センター および File Exchange で Naming Conventions についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!