Bonjours à tous,

J'aimera savoir s'il est possible de rappeler la fonction SelectionChangeFcn des mes radiobutton lorsque je reclique sur un radiobutton déja sélectionné ?

Voici comment je les définis :

Code : Sélectionner tout - Visualiser dans une fenêtre à part
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]);