我對C#編碼頗爲陌生,我試圖創建一個'取消'按鈕。我收到上面的錯誤消息。有什麼建議麼?提前致謝! 我的代碼:沒有爲'button3_click'匹配委託過載system.eventhandler
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;
using System.Threading;
namespace test
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
this.FormClosing += new FormClosingEventHandler(button3_Click);
}
public void button3_Click(object sender, FormClosingEventArgs e)
{
e.Cancel = true;
this.Hide();
}
}
}
非常感謝它現在使用你的提示工作正常。這個函數不會取消循環,對嗎?在那種情況下我必須使用中斷嗎?你有什麼建議? – Mocke