GUI design of static text

3 次查看(过去 30 天)
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.....

采纳的回答

matt dash
matt dash 2013-2-18
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.

更多回答(0 个)

类别

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