Βάλε σε μια φόρμα τα εξής:
this.ShowInTaskbar = false;
this.StartPosition = FormStartPosition.CenterScreen;
this.TopMost = true;
this.FormBorderStyle = FormBorderStyle.None;
this.Left = 0;
this.Top = 0;
this.Width = Screen.PrimaryScreen.Bounds.Width;
this.Height = Screen.PrimaryScreen.Bounds.Height;
Φρόντισε να έχεις και ένα close button, γιατί μετά δεν θα μπορείς να γυρίσεις πίσω.... (or παίζει και το Alt+F4)
Χρήστος Γεωργακόπουλος