I haven't been able to find docs on how to use a bindable attribute to control bindability of properties to grid columns. I tried the usual .NET [Bindable(false)] and the property still bound. Can you point me to an example or doc on how to do this with the WinGrid?
Thanks!
Ok, cheers :).
Nope, I don't think there are any other attributes. You will probably have to implement ITypedList on your data source.
Mmmm... this works for removing the property from being part of the DataSource.
Is there anything similar that could propogate through to the WinGrid, but only hide the column? Just... other things on the form / grid may be dependant upon the columns I want hiding, like the ID's, which I would always want to be hidden.
Which namespace would that be in?
Edit: Duh, that'll be "Browsable", not "Browseable" :).
[Browseable(false)] sounds like what I need, thanks.