% Test of the backgroundcolor option for pushbutton and radiobutton gui = figure('position',[100 100 300 200],'Color',[1 1 1]); h=uicontrol('parent',gui,'style','pushbutton','string','Enter',... 'BackgroundColor',[0 1 0],'position',[50 50 81 23],... 'fontsize',8,'Tag','button_TuTg'); uicontrol('parent',gui,'style','radiobutton',... 'string','mit Ausgleich','BackgroundColor',[0 1 0],... 'position',[20 100 140 24],'Value',1);