Effacer les filtres
Effacer les filtres

GUI design of static text

2 vues (au cours des 30 derniers jours)
Elysi Cochin
Elysi Cochin le 16 Fév 2013
i designed a GUI and i inserted a background image in the GUI... now my GUI contains static text..... i don't find a matching color in the property inspector to match the background image i have inserted... is it possible to make the static text look opaque (as the option in paint it)..... so that only the text written in it can be viewed whereas the background color of it cannot be seen.....

Réponse acceptée

matt dash
matt dash le 18 Fév 2013
Two things; First, you are not limited to the colors shown in the property editor. You can enter any RGB color manually.
Second, no, you cannot make a uicontrol('style','text') have a transparent background. But you can make a text() object have a transparent background. You can make a large axes that is the same size as your figure, make it invisible set(ax,'visible','off') so that it does not obscure the background. Then use the text command (in the openingfcn of your gui) to add text to this axes. you can specify that the text should have no background color:
text(xcoord,ycoord,'hello world','backgroundcolor','none','parent',ax)
Presumably you already made such an axes to plot the background image, so you can just add text directly to that axes.

Plus de réponses (0)

Catégories

En savoir plus sur Migrate GUIDE Apps dans Help Center et File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by