在WPF中使用XAML和ironpython,图像显示在设计器窗口中,但在运行程序时则不显示

时间:2014-03-23 01:04:43

标签: c# wpf image xaml ironpython

我正在为一所学校的项目工作,我非常了解ironpython。我正在尝试使用几张图片。我希望能够使用鼠标拖动它们,但是当我运行程序时,我甚至无法将图像显示在表单上。它在设计器中显示得很好,并且在我运行程序后消失。

这是我到目前为止的代码......

<Window 
       xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" 
       xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" 
       Title="WpfApplication3" Height="1000" Width="1000" Background="Green"> 
       <Grid>

        <Button Width="75" Height="50" Click="Button_Click">Push Me</Button>
        <Image  HorizontalAlignment="Left" Height="100" Margin="289,460,0,0" VerticalAlignment="Top" Width="100">
            <Image.Source>
                <BitmapImage UriSource="/Images/atlantafalcons.jpg" />
            </Image.Source>
        </Image>
    </Grid>
</Window> 

我不明白我做错了什么......

1 个答案:

答案 0 :(得分:0)

只需删除第一个反斜杠:

<Grid>
    <Button Width="75" Height="50" Click="Button_Click">Push Me</Button>
    <Image  HorizontalAlignment="Left" Height="100" Margin="289,460,0,0" VerticalAlignment="Top" Width="100">
        <Image.Source>               
            <BitmapImage UriSource="Images/atlantafalcons.jpg" />
        </Image.Source>
    </Image>
</Grid>