set enable propeprty to off
5 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
In a gui i have a button which executes a simulation that lasts ~ 20sec. During this period i want the button to be disabled, so i have written in buttons callback:
set(hObject,'Enable','off'); simulation(); set(hObject,'Enable','on');
It doesnt work. It seems that that the set method operates after the end of simulation because if i write set(hObject,'Enable','off');simulation(); the button is disabled after the simulation finishes!!!
Why please?
0 Kommentare
Antworten (2)
Doug Hull
am 1 Nov. 2013
You might want to put a DRAWNOW before simulation. It could help to ensure the GUI is updated before simulation is called.
Image Analyst
am 1 Nov. 2013
Call drawnow to force an update/refresh/repaint:
set(hObject,'Enable','off');
drawnow;
simulation();
set(hObject,'Enable','on');
The problem is that it got into your intensive simulation right away before the message to gray out your button was processed. Basically it sends a message to the operating system to disable that button, and the operating system can decide when it wants to act upon that message. But meanwhile your MATLAB script barrels on doing your simulation and the operating system thinks that is a higher priority process so it does that first and will get around to disabling your button whenever it thinks it has time to do so. Calling drawnow forces it to do that right away before it can move on to the next thing.
Siehe auch
Kategorien
Mehr zu Desktop 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!