Changing values in edit text using pop up menu?

I am new to MATLAB GUI, doing a Small project. In pop-up menu i'm going to give string as "Voltage" and "Current" and in Edit txt i'm setting the Limits of voltage and Current. if i'm clicking the "Voltage", that value should appear in Edit text. please help! Thank you.

답변 (1개)

Walter Roberson
Walter Roberson 2018년 6월 27일

0 개 추천

function popup1_Callback(hObject, event, handles)
all_choices = get(hObject, String);
selected = get(hObject, Value);
chosen = all_choices{selected};
set(handles.text1, 'String', ['Enter ', chosen])

카테고리

질문:

2018년 6월 27일

답변:

2018년 6월 27일

Community Treasure Hunt

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

Start Hunting!

Translated by