有没有办法让我的BackgroundImage均匀地填充ContentPage? Xamarin.Forms,XAML

时间:2017-03-07 06:26:25

标签: xaml xamarin xamarin.forms

这是我目前的代码。

<?xml version="1.0" encoding="utf-8"?>
<ContentPage xmlns="http://xamarin.com/schemas/2014/forms" xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml" xmlns:local="clr-namespace:Quickies" x:Class="Quickies.QuickiesPage" BackgroundImage="Overview Image.png">
</ContentPage>

我是否可以在XAML中设置属性以使图像均匀填充页面?它现在是截止日期:

[1]

1 个答案:

答案 0 :(得分:6)

尝试这可能会对你有帮助。

<?xml version="1.0" encoding="utf-8"?>
<ContentPage xmlns="http://xamarin.com/schemas/2014/forms" xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml" xmlns:local="clr-namespace:Quickies" x:Class="Quickies.QuickiesPage">
<Grid Padding="0">
    <Image
        Aspect="AspectFill"
        Source="Overview Image.png"
        RelativeLayout.WidthConstraint= "{ConstraintExpression Type=RelativeToParent, Property=Width}"
        RelativeLayout.HeightConstraint= "{ConstraintExpression Type=RelativeToParent, Property=Height}">
    </Image>
</Grid>
</ContentPage>