フィルターのクリア

Show image when i use dropdown button

9 ビュー (過去 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 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