我正在尝试编写一个简单的游戏,但我在代码中发现了一个问题。 每当我想要改变一个物体的位置时,它只会将按钮聚焦在面板下方,而不是实际移动物体,所以每次我想移动物体时我都必须禁用按钮,这是我不喜欢的方式。我真的想用,所以我想问你,我该如何解决这个问题和运动? 我希望移动对象,而不是要关注的按钮。
代码:
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace Míček
{
public partial class Micek : Form
{
Random generujPozici = new Random();
int body; int vyskaKroku = 30; int sirkaMice = 40; int poziceMice = 0;
int x1 = (450 / 2) - (40 / 2); int x2 = (450 / 2) - (120 / 2) ;
int y1 = 20; int y2 = 302;
public Micek()
{
InitializeComponent();
TlacStop.Enabled = false;
KeyDown += new KeyEventHandler(stikniTlacitko);
}
private void panel1_Paint(object sender, PaintEventArgs e)
{
Graphics KP = e.Graphics;
Pen Pero = new Pen(Color.Black, 5);
KP.FillEllipse(Brushes.Red, x1, y1, sirkaMice, sirkaMice);
KP.DrawRectangle(Pero, x2, y2, 120, 1);
}
private void Stopky_Tick(object sender, EventArgs e)
{
y1 += vyskaKroku;
poziceMice = generujPozici.Next(0, 450 - sirkaMice);
if (y1 + vyskaKroku > y2 && x1 + sirkaMice > x2 && x1 - sirkaMice < x2 + (120 - sirkaMice))
{
body++;
x1 = poziceMice;
y1 = 20;
}
else
{
if(y1 > y2)
{
x1 = poziceMice;
y1 = 20;
body = 0;
}
}
pocitadloBody.Text = body.ToString();
Refresh();
}
private void TlacStart_Click(object sender, EventArgs e)
{
Stopky.Enabled = true;
TlacStart.Enabled = false;
if(TlacStop.Enabled == false)
{
TlacStop.Enabled = true;
}
}
private void TlacStop_Click(object sender, EventArgs e)
{
Stopky.Enabled = false;
TlacStart.Enabled = true;
TlacStop.Enabled = false;
x1 = (450 / 2) - (40 / 2);
y1 = 20;
body = 0;
Refresh();
}
void stikniTlacitko(object sender, KeyEventArgs e)
{
switch (e.KeyCode)
{
case Keys.Right:
if(x2 < 330)
{
x2 += 10;
Refresh();
}
break;
case Keys.Left:
if (x2 > 0)
{
x2 -= 10;
Refresh();
}
break;
}
}
}
}