将图像作为背景(发送到后面)

Making the image as a background (Send to back)

我想在这个网格中放一张图片作为背景。到目前为止,任何插入图像控件的尝试都会导致图像位于按钮的顶部,而我希望它位于背面。

<Page
x:Class="ZimmerFrei_v0._1.MainPage"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="using:ZimmerFrei_v0._1"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
mc:Ignorable="d"
Background="{ThemeResource ApplicationPageBackgroundThemeBrush}">

<Grid >


    <Button x:Name="btnNearMe" 
            Content="Near Me" 
            HorizontalAlignment="Left" 
            Margin="99,181,0,0" VerticalAlignment="Top" 
            Height="76"
            Width="216" 
            Click="btnNearMe_Click"/>
    <Button x:Name="btnBestOffers" 
            Content="Button" 
            HorizontalAlignment="Left" 
            Margin="99,312,0,0" 
            VerticalAlignment="Top" 
            Height="76" Width="216" 
            Click="Button_Click"/>

    <Image />


</Grid>

在这里您可以做的最简单的事情就是给您的网格一个图像画笔。只需前往您的属性 windows 中的画笔部分和那里的 select 瓷砖画笔。到 ImageSource 属性 指定你想要的图像。

您还可以查看此 link 以获得更多帮助。

希望这能解决您的问题。