Where is FolderNameEditor
-
I'm trying to use the FolderNameEditor in a property grid. Like this: [Editor(typeof(System.Windows.Forms.Design.FolderNameEditor), typeof(System.Drawing.Design.UITypeEditor))] But it seems that FolderNameEditor is not in that namespace. Although all the documentation that I've seen says that it is. I'm using VS2005 and the 2.0 framework. Can someone tell me where this editor is?
-
I'm trying to use the FolderNameEditor in a property grid. Like this: [Editor(typeof(System.Windows.Forms.Design.FolderNameEditor), typeof(System.Drawing.Design.UITypeEditor))] But it seems that FolderNameEditor is not in that namespace. Although all the documentation that I've seen says that it is. I'm using VS2005 and the 2.0 framework. Can someone tell me where this editor is?
-
Hi, Thanks, that's it. I had System.Design and System.Drawing (which should have been System.Drawing.Design). RS