Se utilizzate Vista, con una coppia di API è possibile aggiungere l'effetto "vetro" ai Windows Forms.

.
   1:  using System.Runtime.InteropServices;
   2:   
   3:  struct Margins
   4:  {
   5:    public int Left;
   6:    public int Right;
   7:    public int Top;
   8:    public int Bottom;
   9:  }
  10:   
  11:  [DllImport("dwmapi.dll")]
  12:  static extern void DwmIsCompositionEnabled (ref bool pfEnabled);
  13:  [DllImport("dwmapi.dll")]
  14:  static extern void DwmExtendFrameIntoClientArea(IntPtr hWnd, ref Margins pMargins);
  15:   
  16:   
  17:  public void SetGlass (Form form)
  18:   {
  19:     //Running VISTA?
  20:     if (Environment.OSVersion.Version.Major < 6) return;
  21:     //Glass effect enabled?
  22:     bool ret = false;
  23:     DwmIsCompositionEnabled(ref ret);
  24:     if (!ret) return;
  25:     //Enable Glass
  26:     form.BackColor = Color.Black;
  27:     Margins marg;
  28:     marg.Left = -1;
  29:     marg.Top = -1;
  30:     marg.Right = -1;
  31:     marg.Bottom = -1;
  32:     DwmExtendFrameIntoClientArea(form.Handle, ref marg);
  33:  }

Invocando SetGlass() passando il form che vogliamo "vetrificare" smile_teeth si otterrà:

Peccato che l'effetto si applica a tutto il contenuto della client area con un risultato finale tutt' altro che piacevole. Una possibile soluzione al problema può essere quella di utilizzare la libreria che trovate qui.