[XAML]
<Button Height="100">
<RadioButton Content="Button1" />
<RadioButton>Button 2</RadioButton>>
</Button>
A StackPanel can be used inside the button to have multiple
controls inside the button.
The following lines of code can be used to overcome the error.
<Button Height="100">
<StackPanel Orientation="Horizontal">
<RadioButton Content="Button1"/>
<RadioButton>Button 2</RadioButton>
</StackPanel>
</Button>