hi,
i have a problem when putting radio buttons in a button group. they are behaving like checkboxes not radio buttons anymore (i can check 2 buttons at the same time)
<ig:ButtonGroup>
<ig:RadioButtonTool Caption="Align Left" GroupName="grpAllign" Id="rdbtnAlignLeft" KeyTip="AL" MaximumSize="ImageOnly" SmallImage="/SES.WebTracker.Ribbon;component/Img/Home/AlignLeft16.png" Click="M_SelectAlignment" IsChecked="{Binding Path= P_AlignLeft,Mode=TwoWay,Source={StaticResource Font}}"/>
<ig:RadioButtonTool Caption="Center" GroupName="grpAllign" Id="rdbtnCenter" KeyTip="AC" MaximumSize="ImageOnly" SmallImage="/SES.WebTracker.Ribbon;component/Img/Home/Center16.png" Click="M_SelectAlignment" IsChecked="{Binding Path= P_Center,Mode=TwoWay,Source={StaticResource Font}}"/>
<ig:RadioButtonTool Caption="Align Right" GroupName="grpAllign" Id="rdbtnAlignRight" KeyTip="AR" MaximumSize="ImageOnly" SmallImage="/SES.WebTracker.Ribbon;component/Img/Home/AlignRight16.png" Click="M_SelectAlignment" IsChecked="{Binding Path= P_AlignRight,Mode=TwoWay,Source={StaticResource Font}}"/>
</ig:ButtonGroup>
Hi,
That's definitely a bug in the control. We'll aim to fix it for the next Service Release, scheduled for the early April. In the meantime, your only option as a workaround is to listen for the Checked event of each RadioButtonTool and uncheck the others in its group in the event handler.
Thanks for reporting that!
ok.. i'll try it.. thanks