Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试在 matlab 中创建一个 GUI,其中必须动态创建按钮。即,当用户选择目录时,将创建与所选目录中的文件数量一样多的按钮。怎么能做到这一点?任何帮助将不胜感激。
您想使用句柄图形,更具体地说是句柄图形组件。从同一个网页,您可以看到以编程方式创建按钮的代码,
h = figure('ToolBar','none'); ht = uitoolbar(h); a = rand(16,16,3); htt = uitoggletool(ht,'CData',a,'TooltipString','Hello');
并将它们的回调/处理程序属性设置为属性值对。