3
在Visual Studio C#Express 2010上,我發現取消。通過按照文檔設置e.Cancel來進行驗證會導致應用程序在退出時掛起。例如運行下面的內容並點擊標題欄'X'。如何避免.Validating()取消導致應用程序退出掛起?
任何人都知道解決方案嗎?謝謝。
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 Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void textBox1_Validating(object sender, CancelEventArgs e)
{
e.Cancel = true;
}
}
}
非常好 - 謝謝Kragen。 – ChrisJJ