フィルターのクリア

Displaying message in GUI

5 ビュー (過去 30 日間)
Sush Gautam
Sush Gautam 2022 年 7 月 4 日
回答済み: Image Analyst 2022 年 7 月 4 日
In my GUI, there is one pushbutton which when pressed displays a graph. I want to display a message in the GUI indicating "Plotting the graph....." and when it has plotted the graph, the message should be displayed as " Graph has been plotted". How to do it?

採用された回答

Simon Chan
Simon Chan 2022 年 7 月 4 日
Use function uiprogressdlg or uialert

その他の回答 (1 件)

Image Analyst
Image Analyst 2022 年 7 月 4 日
You could have a static text label on the GUI and then set its string or text property
app.txtStatus.String = "Plotting the graph.....";
drawnow; % Force immediate update.

カテゴリ

Help Center および File ExchangeInteractive Control and Callbacks についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by