I don't know why we need a grid when building a Windows form! What can't we do without a grid control in a Windows form then? Please discuss.
+1
A:
A grid control is very useful for basic spreadsheet and database listing. You can emulate it with a list view in column mode, but a true grid control is much more powerful. In the old days of VB grid control was so used and useful, that several third party controls were marketed.
Lorenzo
2010-06-15 08:11:14
+4
A:
I think it's the wpf window you're mentioning by windows form.
Grid is used for layout purpose. You can also get rid of it and use other container controls.
Veer
2010-06-15 08:13:11
+1 well spotted
mr.b
2010-06-15 08:16:02
@mr.b: Thanks bro!!!
Veer
2010-06-15 08:18:02
A:
I would say that there was nothing that you couldn't do without a grid control. However, as has already been pointed out, we use controls because they save work. What's the point of reinventing the wheel?
pm_2
2010-06-15 08:14:28
+1
A:
Grid and other panels benefits:
- Layout. Allow to set relative bound of content to another content.
- Position. No coordinates like in WinForms and as result more flexible view.
- Size of control depends on content.
Summary:
- Flaxible view on different screen and font sizes.
SeeSharp
2010-06-15 08:28:00