필터 지우기
필터 지우기

Simple question for GUI

조회 수: 2 (최근 30일)
Dan
Dan 2012년 7월 4일
Hi, I'm new to programming and Matlab, so just a simple question:
If I make a pushbutton and an edit text, what is the code so that when I push the pushbutton a text appears in the edit text area?
For example if the edit text is set to "hello" I want it to change to "how are you?" when you press the button.
Thank you very much! Daniel

채택된 답변

Dr. Seis
Dr. Seis 2012년 7월 4일
Also wanted to add a good resource for those who want to learn how to program a variety of things in Matlab GUIs:

추가 답변 (2개)

Kevin Claytor
Kevin Claytor 2012년 7월 4일
편집: Kevin Claytor 2012년 7월 4일
You'll need to know the tag of the pushbutton if you're using GUIDE, you can double click to open the properties and find it there. This is how your reference that object. Then use get and set to set the values;
set(button_tag,'String','New String For Button');
You'll find get(handle) and set(handle) are extremely useful for finding properties you can set and then setting them.

Dan
Dan 2012년 7월 4일
Niceee!! Many thanks!! Never expected such quick replies!

카테고리

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