Displaying message in GUI

2 Ansichten (letzte 30 Tage)
Sush Gautam
Sush Gautam am 4 Jul. 2022
Beantwortet: Image Analyst am 4 Jul. 2022
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?

Akzeptierte Antwort

Simon Chan
Simon Chan am 4 Jul. 2022
Use function uiprogressdlg or uialert

Weitere Antworten (1)

Image Analyst
Image Analyst am 4 Jul. 2022
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.

Kategorien

Mehr zu Interactive Control and Callbacks finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by