Simple question for GUI
38 次查看(过去 30 天)
显示 更早的评论
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
0 个评论
采纳的回答
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
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.
0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Migrate GUIDE Apps 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!