How can I make some action on listbox by double clicking?
21 次查看(过去 30 天)
显示 更早的评论
Hello all, I have two listbox. First listbox contains some strings, I want that by double click on these strings individualy, make them move to the second listbox. Any idea?
0 个评论
回答(2 个)
B.k Sumedha
2015-6-25
编辑:B.k Sumedha
2015-6-25
There is a good example in mathworks documentation only.You can have a look at this .
0 个评论
Image Analyst
2015-6-25
Sorry, there is no double-click event exposed in MATLAB, only an event that fires off on a single click (which will also fire off at a double-click event as well).
2 个评论
Walter Roberson
2015-6-25
You can check SelectionType though; see http://www.mathworks.com/matlabcentral/answers/96424-how-can-i-execute-a-double-click-callback-without-executing-the-single-click-callback-in-my-matlab-g
joe
2018-1-11
Double-Clik on Listbox is possible. to make the double-click works you only Need to write the code below in listbox callbox
function listbox_Callback(hObject, eventdata, handles)
if strcmp(get(gcf,'selectiontype'),'open')
% here you write write code, which you wanna be executed afer double-click
end
另请参阅
类别
在 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!