Effacer les filtres
Effacer les filtres

how to remove box outline in GUI matlab using setting menu

5 vues (au cours des 30 derniers jours)
Sagar AS
Sagar AS le 9 Juil 2015
Réponse apportée : Sid le 10 Juil 2015
hello, i have created a GUI like this if i need to remove the outline or make the text box transparent so that it suits the background, can i do it using the settings drop box in guide?

Réponses (1)

Sid
Sid le 10 Juil 2015
Would something like this work?
% Set the figure color;
f = figure(...
'color',[0 1 0]);
% Add text box component.
txtbox = uicontrol(f,'Style','edit',...
'String','Enter your name here.',...
'Position',[30 50 130 20]);
% Grab the color from the figure, and set it as the backgroundcolor.
set(txtbox,'BackgroundColor',get(f,'Color'));
Of course it's not transparency, but at least some capability to match the background color. You can of course set the color via the set option to any prefered color as well.
Maybe Yair Altman might have a better idea on it (check on the posting here .)
HTH

Catégories

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

Community Treasure Hunt

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

Start Hunting!

Translated by