How to delete the setting uimenu from the app.contextmenu component
7 ビュー (過去 30 日間)
古いコメントを表示
Hi, I want to set the uimenu objects in app.contextmenu dynamically. just like following code:
function ContextMenuOpening(app, event)
app.ContextMenu = cmHandle;
uimenu(cmHandle,'Label','Wider');
uimenu(cmHandle,'Label','Inspect');
end
end
The problem is that the app.contextMenu will save all added uimenu in every funtion calling and never drop repeated items. I need a answer to clear all children in app.ContextMenu.
Thanks a lot!
Yuhao Sun
回答 (2 件)
Voss
2023 年 1 月 10 日
"I need a answer to clear all children in app.ContextMenu."
delete(app.ContextMenu.Children)
0 件のコメント
RITAM BASU
2023 年 3 月 22 日
I solved the menus getting repeated with every click by using an "if" statement to check the children (menus) are already there or not,
if isempty(app.ContextMenu.Children)
text = "your menu text";
m1 = uimenu(app.ContextMenu,'Text',text);
end
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Develop Apps Using App Designer についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!