Borrar filtros
Borrar filtros

Show image when i use dropdown button

10 visualizaciones (últimos 30 días)
Adrian-Stefan
Adrian-Stefan el 3 de En. de 2024
Respondida: Adam Danz el 3 de En. de 2024
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 comentario
Ganesh
Ganesh el 3 de En. de 2024
Editada: Ganesh el 3 de En. de 2024
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!

Iniciar sesión para comentar.

Respuestas (1)

Adam Danz
Adam Danz el 3 de En. de 2024
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.

Categorías

Más información sobre Migrate GUIDE Apps en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by