私は Windows フォーム アプリケーションを作成していform2
ます。どうすればいいですか?Alt+1form3
新しいフォームを開くために私が知っている唯一のコードは次のとおりです。
var myForm = new Form3();
myForm.Show();
...しかし、私が言ったように、ボタンを押す代わりにキーを押すことでこれをアクティブにする方法を知る必要があります。
form2で使用しているコードは次のとおりです。
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 Form2 : Form
{
public Form2()
{
InitializeComponent();
}
private void pictureBox1_Click(object sender, EventArgs e)
{
var myForm = new Form2();
myForm.Show();
}
}
}