What control for displaying tabular data with a picture
I need to develop a simple auction application (yes, in WinForms...) and I've been wondering what control should I use for representing the items?
I need to have a picture in the first column.
A title and short description in the second column (the name should be highlighted somehow)
And some additional columns (number of bids, current price, time left...)
Any suggestions?
Kirtan PatelPosted Nov 5, 2009, 10:22 AM
you can not show more than one type of formatting like some text colored and some not like look in single cell
For building this kind of DatagridView you need to Program your own DataGridView
.
In this Case WPF Application can be helpful to you as it Allow Nesting of Controls :)
if my answer helps then check "do you like this answer" check box please :)
LokeyPosted Nov 25, 2009, 2:27 PM
This control gives you freedom in presentation of your data by arranging different objects in custom layouts. You can insert text, image, checkbox, hyperlinks and any custom controls in single item or subitem space.
RolandPosted Nov 5, 2009, 10:09 AM
Sam HobbsPosted Nov 5, 2009, 9:59 AM
Kirtan PatelPosted Nov 5, 2009, 9:56 AM
you can use DataGridView Control For that purpose
DataGridView Can Display Data in Tabular Format and also Capable to Show Images too :)
if my answer helps you then check "Do you like this answer" check Box please :)