Hi all,

I have some custom collections (ArrayList of custom Objects) and I want to
display them using typical Windows form controls (DataGrid, Combo). What
should I do to expose them as valid datasources to these controls? What if I
want that these collections work with Visual Studio on design time in order
to allow me easy create grid columns on design time? Can you point me to
some examples?

Thanks in advance
Sammy

Re: Exposing custom collections as datasources for VS in design time... how to do that? by Tim

Tim
Mon Sep 19 09:39:07 CDT 2005

See if the article below helps.
http://msdn.microsoft.com/msdnmag/issues/05/08/CollectionsandDataBinding/default.aspx

--
Tim Wilson
.Net Compact Framework MVP

"SammyBar" <sammybar@gmail.com> wrote in message
news:eP2vLISvFHA.3400@TK2MSFTNGP14.phx.gbl...
> Hi all,
>
> I have some custom collections (ArrayList of custom Objects) and I want to
> display them using typical Windows form controls (DataGrid, Combo). What
> should I do to expose them as valid datasources to these controls? What if
I
> want that these collections work with Visual Studio on design time in
order
> to allow me easy create grid columns on design time? Can you point me to
> some examples?
>
> Thanks in advance
> Sammy
>
>



Re: Exposing custom collections as datasources for VS in design time... how to do that? by SammyBar

SammyBar
Mon Sep 19 17:58:53 CDT 2005

> See if the article below helps.
> http://msdn.microsoft.com/msdnmag/issues/05/08/CollectionsandDataBinding/default.aspx
Excelent article!
Thanks you a lot

Sammy