Guide Popupmenu adding an image?

3 ビュー (過去 30 日間)
Christopher
Christopher 2014 年 11 月 14 日
コメント済み: Image Analyst 2014 年 11 月 16 日
How can you add an image to a popupmenu using guide? An example picture of what I am trying to do is shown below. I have been trying to figure this out with no luck. Any help is appreciated.

採用された回答

Image Analyst
Image Analyst 2014 年 11 月 16 日
You can get that at Yair's site undocumented MATLAB.

その他の回答 (1 件)

Jan
Jan 2014 年 11 月 15 日
You can include images using HTML:
Icon = fullfile(matlabroot,'/toolbox/matlab/icons/matlabicon.gif');
IconURI = ['"file:/', strrep(Icon, '\', '/'), '"'];
uicontrol('Style', 'popupmenu', ...
'String', {'Hello', ['<html><img src=', IconURI, '> String']})
  4 件のコメント
Christopher
Christopher 2014 年 11 月 16 日
Awesome, that seems to work. Now I just need to figure out how to adjust the spacing. The icon show's up almost on the text.
Is it better to leave the popupmenu strings empty and just reference them this way when using the images? So If I want to use there selection to perform operations such as:
contents = get(hObject,'Value')
switch contents
case 1
set(handles.edit1, 'Visible', 'off');
set(handles.text5, 'Visible', 'off');
case 2
% a=imread('11.png');
% imshow(a);
otherwise
end
Image Analyst
Image Analyst 2014 年 11 月 16 日
That's not right. Look at the code in comments. What you call contents is actually the index that is selected. To get the contents and index:
selectedIndex = get(handles.popup1, 'Value');
allContents = get(handles.popup1,'string');
selectedContents = allContents{selectedIndex};

サインインしてコメントする。

カテゴリ

Help Center および File ExchangeMigrate GUIDE Apps についてさらに検索

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by