AppDesignerでコンポーネントとコールバックが入れ替わる不具合
2 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
AppDesignerを使ってアプリを作っていますが、作成中に既に設定してあったコンポーネントが呼び出すコールバックや、コールバック関数がかなり入れ替わっていたり、下記のようにコールバック関数とコメントの不整合などが発生していることがわかりました。原因と対策方法を教えてください。
% Button pushed function: K_fileBtn
function M_fileBtnButtonPushed(app, event)
filename = app.M_Txt.Value; app.CheckOK = false;
persistent FilePathM
WindowMessage = '質量行列Mの選択';
[FilePathM, app.M_Txt.Value, app.UpdateMCB.Value] = funcSetFile(app, filename, FilePathM, WindowMessage);
app.UIFigure.WindowStyle = 'modal';
end
0 Kommentare
Antworten (0)
Siehe auch
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!