Problems using normalized units in uitab
    3 views (last 30 days)
  
       Show older comments
    
Hi,
right now I'm programing a gui. I want to use uitabs. Normally I'm always using normalized units for everything. But unfortunately these are not working in uitabs. If I'm using them, the 'slider' or 'text' won't be shown. Does anybody know of problems of uitabs uising normalized units?
Thanks, Max
1 Comment
  Geoff Hayes
      
      
 on 5 Mar 2016
				Max - how are you using the uitabs? Which version of MATLAB are you using? Please provide a small sample of code that illustrates the problem.
Answers (1)
  Nicolás Casaballe
 on 30 May 2016
        I found a similar issue. I managed to workaround it by specifying normalized units when creating the control. E.g.
t = uitab(gcf); % Apparently, normalized units are default here
c = uicontrol(t,'Style','text',...
      'String','A wild tab appears!',...
      'Units','Normalized',...
      'Position',[0.10 0.50 0.50 0.20]);
0 Comments
See Also
Categories
				Find more on Calendar in Help Center and File Exchange
			
	Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!

