1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
| hPanel = uibuttongroup('BorderType', 'line', ...
'BackgroundColor', cdf, ...
'SelectionChangeFcn', @Modif_Choix_type, ...
'HighlightColor', cdf, ...
'Position', [0 0 1 1]);
hR1 = uicontrol(hPanel,'Style','radiobutton', ...
'BackgroundColor', cdf, ...
'Units', 'normalized', ...
'Tag', Lege{6, 28}, ...
'Position', [X(6)+18/LargTab Y(28)+4/HautTab 16/LargTab 16/HautTab]);
hR2 = uicontrol(hPanel,'Style','radiobutton', ...
'BackgroundColor', cdf, ...
'Units', 'normalized', ...
'Tag', Lege{6, 27}, ...
'Position', [X(6)+18/LargTab Y(27)+4/HautTab 16/LargTab 16/HautTab]); |
Partager