disable alt + f4 in csharp forms

Code Example - disable alt + f4 in csharp forms

                
                        private void Form1_FormClosing(object sender, FormClosingEventArgs e)
{
    e.Cancel = true;
}