also, disable the call do BindColumns in
[mono.git] / mcs / class / Managed.Windows.Forms / System.Windows.Forms / View.cs
index 83c97ef6eca729bbcbf13dcedc3aa0b681e2ceae..956779918cb8f2a0eb8e3fcfa8d66f91739daa23 100644 (file)
 // Authors:
 //     Ravindra (rkumar@novell.com)
 //
-// $Revision: 1.1 $
-// $Modtime: $
-// $Log: View.cs,v $
-// Revision 1.1  2004/09/09 03:13:39  ravindra
-// Enums for ListView control.
-//
-//
+
 
 namespace System.Windows.Forms
 {
+#if !NET_2_0
        [Serializable]
+#endif
        public enum View
        {
                LargeIcon = 0,
                Details = 1,
                SmallIcon = 2,
-               List = 3
+               List = 3,
+#if NET_2_0
+               Tile = 4
+#endif
        }
 }