Changing the right panel gui in every choices in the left panel

1 次查看(过去 30 天)
Hi! So i am very new to MATLAB especially in GUIs, so what i have here is the design for my program,
So, i wanted to change the gui on the right panel every time i choose something from the left panel upon clicking 'Start Program', however it is my first time doing the gui which makes it difficult. I tried search for links, but couldn't find anything related to this. can someone help me?

采纳的回答

Image Analyst
Image Analyst 2021-4-5
In the callback function for the button, you need to put code to read the selected index in the listbox and do something with that knowledge. Something like
selectedIndex = app.listbox1.Value;
switch selectedIndex
case 1
% Display solid block
case 2
% Display hollow block
case 3
% Display circle
end

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Programming 的更多信息

标签


Translated by