load事件中添加button代码:- ///开始按钮
- Button btnStart = new Button();
- btnStart.Text = "开始";
- btnStart.Size = new Size(80, 30);
- btnStart.Location = new Point((pl.Size.Width - btnStart.Size.Width) / 2, (pl.Size.Height - btnStart.Size.Height) / 2);
- btnStart.Click += Start_Click;
- //pl.Controls.Add(btnStart);
复制代码
formKeyDown 事件中 第一行代码为MessageBox.Show(e.KeyValue.Tostring());
这两个事件应该没关系才对啊 怎么会冲突的 |
|