필터 지우기
필터 지우기

Add a reset option in GUI to clear everything

조회 수: 2 (최근 30일)
Praveen Choudhury
Praveen Choudhury 2016년 1월 8일
댓글: Praveen Choudhury 2016년 1월 8일
I have a GUI, which does some operations and it displays in the GUI. I want to add a reset option under Utilities(see attached snapshot), so that all the values in the GUI gets cleared like when an user starts(see attached snapshot). See the attached images.

채택된 답변

Geoff Hayes
Geoff Hayes 2016년 1월 8일
Praveen - in your menu reset callback, you will just want to clear the data (where appropriate) from each control that you wish to be cleared. The handles input structure (to the callback) will have the handle to each control which you can then use to clear (or reset) its data. For example, if there is a uitable that you wish to reset to a 4x2 block of cells, then just do
function menuReset_Callback(hObject, eventdata, handles)
set(handles.uitable1,'Data',cell(4,2));
You would need to do something similar for each of your controls to be reset.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Migrate GUIDE Apps에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by