1. 使用, 顯示的內容改為Content屬性
<RadioButton Content="boy"/>
2. 要使用分組,就是用 GroupName屬性
<RadioButton Content="男" GroupName="sex"></RadioButton> <RadioButton Content="女" GroupName="sex"></RadioButton> <RadioButton Content="籃球" GroupName="sport"></RadioButton> <RadioButton Content="足球" GroupName="sport"></RadioButton>