WTF???

  • Thread starter Thread starter CJ Taylor
  • Start date Start date
C

CJ Taylor

Hey all,

Sorry to come with another question and which I could be around more to
answer others but just under the gun right now.

Anyways... working on some custom user controls for a project we are on, and
I was making them pretty nice with easy to use databinding etc. So as I'm
building these things, there is very little documentation (none internally)
on certain editors for the property box for controls.

ergo. I have been building a property I want to work like a standard IList
source that allows you to bind a dataset or whatever to a data control
(Datasource, Datamember, Displaymember, etc).

So I do find an article on MSDN on creating a databound listview, which was
awesome, but there is no documentation on the editors. i.e.
System.Windows.Forms.Design.DataMemberListEditor

works when I do

<Category("Data"), _

Editor("System.Windows.Forms.Design.DataMemberListEditor," & _

"System.Design", GetType(System.Drawing.Design.UITypeEditor))> _

however, if I browse for this editor I cannot find it in the object browser.
And the msdn help has nothing on it or any other editors. What gives?



-CJ
 
Ok, wait..

its in System.Design.dll, that has a system.windows.forms.design namespace.

Thats really confusing...
 
Scratch that... some are in the System.Design.DLL file, others are in
System.windows.forms.design, but I still cannot find the
DataMember/DataSource Editors anywhere....

This is stupid.
 
Back
Top