windows forms controls

R

Ralph

Does a control similar to the the asp.net repeater or datalist exist for
winforms?
One where I can have a group of controls repeat like in the asp.net
repeater.
DataGridView doesn't appear to do that.
 
P

Peter Duniho

Ralph said:
Does a control similar to the the asp.net repeater or datalist exist
for winforms?
One where I can have a group of controls repeat like in the asp.net
repeater.
DataGridView doesn't appear to do that.

I don't know much about the ASP.NET controls. But the Windows Forms
namespace includes layout controls, such as FlowLayoutPanel and
TableLayoutPanel, in which you can simply add as many controls of a
certain type as you want, and they will be arranged according to the
layout rules for the panel.

Maybe one of those would suit your needs.

Pete
 
R

Ralph

Peter Duniho said:
I don't know much about the ASP.NET controls. But the Windows Forms
namespace includes layout controls, such as FlowLayoutPanel and
TableLayoutPanel, in which you can simply add as many controls of a
certain type as you want, and they will be arranged according to the
layout rules for the panel.

Maybe one of those would suit your needs.

Pete

Thank Pete I will take a look at those.
 
J

Jeff Johnson

Does a control similar to the the asp.net repeater or datalist exist
for winforms?
One where I can have a group of controls repeat like in the asp.net
repeater.
DataGridView doesn't appear to do that.

Not in the sense that you define a template and then a bunch of controls get
created from that template for every row. This would really tax system
resources.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top