I could be missing the point here, but I believe you could also override the OnClosing event.
protected override void OnClosing(CancelEventArgs e)
{
base.OnClosing(e);
}
This method allows you to disable the action of closing, but leaves the "Close" button enabled - the user can then click it - but nothing happens. This may be confusing, unless you provide a MessageBox or similar to remind the user why he cannot close.