我想在我的Xamarin Forms App中添加背景图片。我尝试过这里定义的解决方案:Xamarin forms background image for all Pages。但这似乎不起作用。 我也试过像这样通过Xaml设置它
<Style TargetType="ContentPage">
<Setter Property="BackgroundImage" Value="MyImage.jpg" />
</Style>
无济于事。任何指针将不胜感激。我正在研究Xamarin Forms版本2.3.2.127
答案 0 :(得分:4)
您正在为Style
定义隐式ContentPage
,如果它在Application
级ResourceDictionary
定义,则会应用于所有ContentPage
。
由于您提供的稀缺背景和信息,我只能猜测发生了什么。您的应用中可能没有ContentPage
,但是ContentPage
中有多个继承的网页。如果您希望这样做,则必须在ApplyToDerivedTypes
中将属性true
设置为Style
:
<Style TargetType="ContentPage" ApplyToDerivedTypes="true">
<Setter Property="BackgroundImage" Value="MyImage.jpg" />
</Style>