将图像作为背景(发送回)

时间:2015-01-27 20:34:03

标签: xaml windows-phone-8 windows-phone-8.1

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

<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>

1 个答案:

答案 0 :(得分:0)

这里你能做的最简单的事情就是给你的Grid一个图像画笔。只需前往属性窗口中的Brush部分,然后选择Tile Brush。在ImageSource属性中指定所需的图像。

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

希望这能解决你的问题。