I am writing a program using inputdlg function, and inputdlg came with a dialog box with an 'OK' and 'cancle' button. And I do not wish to quit when clicking the cancle button, are there's anyways I could delete this button or modify this button to become a 'retry' instead?

 채택된 답변

ES
ES 2017년 3월 21일

0 개 추천

Cancel and OK are hardcoded in inputdlg
OKHandle=uicontrol(InputFig , ...
BtnInfo , ...
'Position' ,[ FigWidth-2*BtnWidth-2*DefOffset DefOffset BtnWidth BtnHeight ] , ...
'KeyPressFcn',@doControlKeyPress , ...
'String' ,'OK' , ...
'Callback' ,@doCallback , ...
'Tag' ,'OK' , ...
'UserData' ,'OK' ...
);
setdefaultbutton(InputFig, OKHandle);
CancelHandle=uicontrol(InputFig , ...
BtnInfo , ...
'Position' ,[ FigWidth-BtnWidth-DefOffset DefOffset BtnWidth BtnHeight ] , ...
'KeyPressFcn',@doControlKeyPress , ...
'String' ,xlate('Cancel', '-s') , ...
'Callback' ,@doCallback , ...
'Tag' ,'Cancel' , ...
'UserData' ,'Cancel' ...
); %#ok
Above is code from inputdlg.m.
If you change in inputdlg.m, it will affect all inputdlg usages.
Check other similar functions if they are useful.
dialog, errordlg, helpdlg, listdlg, msgbox,
questdlg, textwrap, uiwait, warndlg

추가 답변 (0개)

카테고리

도움말 센터File Exchange에서 Maintain or Transition figure-Based Apps에 대해 자세히 알아보기

제품

태그

질문:

2017년 3월 21일

답변:

ES
2017년 3월 21일

Community Treasure Hunt

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

Start Hunting!

Translated by