Show image when i use dropdown button

조회 수: 3 (최근 30일)
Adrian-Stefan
Adrian-Stefan 2024년 1월 3일
답변: Adam Danz 2024년 1월 3일
Hello! When i select for example "Argentina", i want to show the image in that location where the dropdown button is, but it opens another window. Can someone please help me?
  댓글 수: 1
Ganesh
Ganesh 2024년 1월 3일
편집: Ganesh 2024년 1월 3일
Hi Adrian-Stefan,
It's unclear as to what functions are currently being implemented, but a solution to this problem is stated below.
You can try using the "uiimage()" function in matlab to create an image component. You can modify the component on the callback() function when the dropdown option is clicked.
Please refer to the following documentation on using this function:
Hope this helps!

댓글을 달려면 로그인하십시오.

답변 (1개)

Adam Danz
Adam Danz 2024년 1월 3일
You need to specify the axes handle so the image is generated in the intended axes. For example,
image(app.UIAxes,__)
imagesc(app.UIAxes,__)
% etc...
The reason this is happening is because by default, the app's figure handle is not visible. That is, the figure's HandleVisibility is set to off. When you don't specify an axes handle, MATLAB looks for the current axes but can't find it because the figure's handle is not visible.

카테고리

Help CenterFile Exchange에서 Migrate GUIDE Apps에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by