我是新手编码,试图在学校学习它。 最近我和我的朋友在让设计师出现图像方面遇到了一些问题。我们正在使用Blend for VS 2015。
我到目前为止所做的一步一步:
这就是设计师的样子。
值得一提的是,当我在浏览器中运行图像时,图像会显示出来。
XAML:
<UserControl x:Class="SilverlightApplication6.MainPage"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
mc:Ignorable="d"
d:DesignHeight="300" d:DesignWidth="400">
<Grid x:Name="LayoutRoot" Background="Red">
<Image x:Name="image" Margin="145,95,155,105" Source="/Images/Vei.jpg" d:LayoutOverrides="LeftPosition, RightPosition, TopPosition, BottomPosition"/>
</Grid>
我的老师无法帮助。我希望你可以。我真的尝试过阅读旧线程,但没有一个工作。
编辑: 我已经运行了一次VS修复,并从不同来源重新安装了两次(其中一个是dreamspark,另一个是官方下载页面)。
如果有任何不同,我也会使用Parallells通过虚拟机运行Windows。
答案 0 :(得分:1)