コード:
private void sprites_updater_Tick(object sender, EventArgs e)
{
s++;
int x = player.Location.X;
int y = player.Location.Y;
if (s == 1)
if (ModifierKeys.HasFlag(Keys.A))
{
player.Location = new Point(x - 5, y);
}
s = 0;
sprites_updater.Start();
}
そのため、タイマー コードを使用しているときに、上記 (ModifierKeys.HasFlag(Keys.A)) と同じことを書きましたが、機能しませんでした。どうして?!ところで、XNA、WPF、またはその他のもの (.NET のみ) を使用せずに、WinForms パネル内に 3D カメラの視点を表示する方法はありますか?!