1

我在制作 Whack 鼹鼠类型游戏时遇到问题,我正在尝试创建鼹鼠将动态出现的图像,但堆栈面板所在的位置只有一个空白的白色屏幕。公平地说,我是一个菜鸟。

这是我尝试创建这些图像的循环:

        Image[] ImageArray = new Image[50];
        InitializeComponent();
        //string ImageName = "Image";
        for (int i = 0; i <= 8; i++)
        {
            Image Image = new Image();
            ImageArray[i] = Image;
            Image.Name = "Image" + i.ToString();
            StackPanel1.Children.Add(ImageArray[i]);
        }

        //Random Number Generator
        Random rnd = new Random();
        int num = rnd.Next(1, 9);

        //If Random Number is "1" Then Image will display
        if (num == 1)
        {
            ImageSource MoleImage = new BitmapImage(new Uri(ImgNameMole));
            ImageArray[1].Source = MoleImage;
        }

这是 StackPanel XAML:

    <Window x:Name="Window1" x:Class="WhackaMole.MainWindow"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    Title="MainWindow" Height="468.843" Width="666.045" OpacityMask="#FFF70D0D"                         Icon="mole2.png" Cursor="" >
<Grid OpacityMask="#FF5D1313">
    <Image Margin="422,191,-185,-69" Source="mole2.png" Stretch="Fill" HorizontalAlignment="Right" VerticalAlignment="Bottom"/>

    <TextBlock HorizontalAlignment="Left" Margin="35,31,0,0" TextWrapping="Wrap"             VerticalAlignment="Top" Height="52" Width="595" FontSize="50" FontFamily="SimHei"><Run Language="en-ca" Text="Can You Catch the Mole?"/></TextBlock>
    <Button x:Name="NewGameBttn" Content="New Game" HorizontalAlignment="Left" Margin="77,0,0,16" VerticalAlignment="Bottom" Width="139" Height="50" FontSize="25" Click="NewGameBttn_Click"/>
    <Button x:Name="CloseBttn" Content="Close" HorizontalAlignment="Left" Margin="245,365,0,0" VerticalAlignment="Top" Width="76" Height="50" FontSize="29" Click="CloseBttn_Click"/>
    <StackPanel x:Name="StackPanel1" HorizontalAlignment="Left" Height="231" Margin="35,112,0,0" VerticalAlignment="Top" Width="525"/>

</Grid>
</Window>
4

2 回答 2

3

据我所知,您正在创建一个新的类型对象,ImageImage实际上没有任何内容可显示。你需要设置Source你的Image. 这是从MSDN窃取的示例。

Image myImage = new Image();
myImage.Source = new BitmapImage(new Uri("myPicture.jpg", UriKind.RelativeOrAbsolute));
LayoutRoot.Children.Add(myImage);

正如 townsean 指出的那样,您可能应该Style为您创建一个Image可以设置常见属性的位置,例如HeightWidth

于 2013-05-07T17:46:47.393 回答
2

我的猜测是,由于您将项目添加到 a StackPanel,因此StackPanel正在选择图像上的默认高度和宽度分钟(可能为 0),这就是为什么您什么都看不到的原因。

尝试为图像的高度和宽度设置一个值,看看是否有任何显示。

此外,正如 Tejas 指出的那样,您没有设置图像源。

编辑:像这样设置图像宽度:

Image myImage = new Image();
myImage.Width = 25;
myImage.Height = 25;

在您首先创建图像的 for 循环中执行类似的操作。

于 2013-05-07T17:47:32.090 回答