1

タイマー (obstacleTimer) が作動したときに、新しいランダムな X と Y の位置に移動したいと思います。

それが動いているのは、私が作ったゲームの障害物だからです。

フォームは 1025 です。545px 大きい。

4

2 に答える 2

3

ピクチャボックスのサイズが 100x100 px であると仮定します。timer1 を有効にする必要があります

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;

namespace WindowsFormsApplication1
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }

        public Random r = new Random();
        private void timer1_Tick(object sender, EventArgs e)
        {
            int x = r.Next(0,925);
            int y = r.Next(0,445);
            pictureBox1.Top = y;
            pictureBox1.Left = x;
        }
    }
}
于 2013-04-06T15:26:55.017 に答える
0

次のようなことを試してください:

 public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
            tm.Interval = 100;
            tm.Tick += new EventHandler(tm_Tick);
            tm.Start();
        }
        Timer tm = new Timer();
        void tm_Tick(object sender, EventArgs e)
        {
            pictureBox1.Location = new Point((int)(new Random().Next(0, 1025)), (int)(new Random().Next(0, 545)));
        }

    }

編集済み:写真がフォーム内またはフォーム外であることも確認する必要があります。

public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
            tm.Interval = 1000;
            tm.Tick += new EventHandler(tm_Tick);
            tm.Start();
        }
        Timer tm = new Timer();
        int X = 0;
        int Y = 0;
        void tm_Tick(object sender, EventArgs e)
        {
            X = ((int)(new Random().Next(0, 1025)));
            Y = ((int)(new Random().Next(0, 545)));
            if (X > 1025 - pictureBox1.Width)
            {
                X = 1025 - pictureBox1.Width;
            }
            if (Y > 545 - pictureBox1.Height)
            {
                Y = 545 - pictureBox1.Height;
            }
            pictureBox1.Location = new Point(X, Y);
        }

    }
于 2013-04-06T15:24:56.683 に答える