Creating a transparent text box in MATLAB GUI using GUIDE

巧了我就是萌 提交于 2019-12-24 07:18:33

问题


In a MATLAB GUI I have a picture in the background (created on axes) and over it I would like to have text. I put a static text box but I need it to be transparent. Can I do it using GUIDE?


回答1:


You can't use guide to do this, since the text objects are actually uicontrols. Try adding the text using the text function in your code instead. You may have to trial-and-error it in to the right location.



来源:https://stackoverflow.com/questions/12604633/creating-a-transparent-text-box-in-matlab-gui-using-guide

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!