为什么我的图像没有显示在设计视图上?视觉工作室

时间:2014-11-12 18:42:32

标签: c# xaml visual-studio-2012

我在visual studio项目的主页面中有以下(非常简单,我知道)XAML代码。为什么图像没有显示?我所做的就是使用工具箱菜单拖动它,然后添加文件路径。

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

    <Grid>
        <Image x:Name="camera" HorizontalAlignment="Left" Height="100" Margin="163,115,0,0" VerticalAlignment="Top" Width="100" Source="C:/Users/user/Desktop/camera.png"/>
    </Grid>
</Page>

0 个答案:

没有答案