MATLAB: Add panel in the GUI of Matlab

buttonsguipanel

I have a GUI with several buttons, but forget them into a Panel, How I can add my panel without the names of my buttons change? Thank you.

Best Answer

set(handles.button,'Parent',handles.panel)
handles.button is the handle to the button and handles.panel is the handle to the panel.