How can I use Menu bar for multiple options check?

조회 수: 8 (최근 30일)
Adrian Quesada
Adrian Quesada 2019년 6월 24일
댓글: Adrian Quesada 2019년 7월 4일
Hi all
I am trying to create an app on the App Designer.
This app will have the option to be in English and Spanish, so the user may choose the language.
To do this I use the Menu Bar, one option for Spanish and another to English, but when I choose option 1 the option 2 sometimes doesn’t un check or If I check option 2 it doesn’t do anything.
I don’t know what is wrong with the code, I would like that only one option may be checked at time and only when the option is clicked.
This is my code:
app.SpanishMenu.MenuSelectedFcn = @ShowCheck;
function ShowCheck(src,event)
if strcmp(app.SpanishMenu.Checked,'on')
app.SpanishMenu.Checked = 'off';
app.EnglishMenu.Checked = 'on';
disp(app.PropiedadesdelAguaPanel.Title);
set(app.PropiedadesdelAguaPanel, 'Title', 'Water Properties')
set(app.TemperaturaDropDownLabel, 'Text', 'Temperature')
else
%strcmpi(app.EnglishMenu.Checked,'on')
%app.EnglishMenu.Checked.Checked = 'on';
app.SpanishMenu.Checked = 'on';
%app.EnglishMenu.Checked = 'off';
set(app.PropiedadesdelAguaPanel, 'Title', 'Propiedades del Agua')
set(app.TemperaturaDropDownLabel, 'Text', 'Temperatura')
end
end
  댓글 수: 4
Luna
Luna 2019년 7월 2일
Will you be able to upload as attachment your whole code for me to run?
Adrian Quesada
Adrian Quesada 2019년 7월 4일
Thanks for your help.
Enclosed you will find the app file.

댓글을 달려면 로그인하십시오.

답변 (0개)

카테고리

Help CenterFile Exchange에서 Develop Apps Using App Designer에 대해 자세히 알아보기

제품


릴리스

R2019a

Community Treasure Hunt

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

Start Hunting!

Translated by