is there a repeater in c# windows forms?

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

i know that there is a repeater in asp.net but is there any thing like that in c# windows forms..

i want to lay out a panel and have it many of them in a scrolling list populated by a dataset

any help would be good.
 
Matt,

There is nothing like this in Windows forms. If you want, you can
create a control which will do it for you. You just need to dynamically add
more controls for each row in your data.

Hope this helps.
 
thank you very much!! for both answers...

i dont understand y a repeater was not included in windows forms.. will this is included in version 2.0 ??
 
Surely there is no repeater in windows forms because;
this.Controls.Add(new TextBox());
Works fine in a windows form, but not at all in an ASP.NET page.
If I could do that in a web page things would have been so much easier.....

jax
 
Back
Top