Xamarin RadioButton.Content 没有显示正确的内容
Xamarin RadioButton.Content not showing correct content
我正在尝试在 RadioButton 中设置图像,如 https://docs.microsoft.com/en-us/xamarin/xamarin-forms/user-interface/radiobutton
所示
<RadioButton>
<RadioButton.Content>
<Image Source="icon.png"/>
</RadioButton.Content>
</RadioButton>
但在应用程序中它只显示文本“Xamarin.Forms.Image”而不是图像。
怎么了?我只是像示例中那样做了。
请阅读docs
However, on some platforms a RadioButton can display a View,
和
On Android, RadioButton objects will display a string-based representation of the View object that's been set as content:
我正在尝试在 RadioButton 中设置图像,如 https://docs.microsoft.com/en-us/xamarin/xamarin-forms/user-interface/radiobutton
所示<RadioButton>
<RadioButton.Content>
<Image Source="icon.png"/>
</RadioButton.Content>
</RadioButton>
但在应用程序中它只显示文本“Xamarin.Forms.Image”而不是图像。
怎么了?我只是像示例中那样做了。
请阅读docs
However, on some platforms a RadioButton can display a View,
和
On Android, RadioButton objects will display a string-based representation of the View object that's been set as content: