Did you mean this instead?
DelForm delForm = new DelForm ();
delForm.ShowDialog ();
Form
is the parent class of all forms, and it is blank.
Show
and Hide
make the form non-modal. My guess is you are trying to make it modal, which is achieved with ShowDialog
.