Ben
Ben

Reputation: 21249

C# 4 - DataGridView with proper ProgressBar control

I need to display a progress bar in a DataGridView.

I've searched around and I've found many (many, many, ...) implementations that basically render a progress bar by drawing it into the cell.

Isn't there a way to use a System.Windows.Forms.ProgressBar directly in a DataGridView cell ?

Upvotes: 3

Views: 1487

Answers (1)

Jesse Bunch
Jesse Bunch

Reputation: 6679

Not without drawing it into the cell.

However, you can check out DevExpress's DataGrid. It allows you to use a ProgressBar or any other control in any cell. I use it and found that is is much easier to use and customize.

Here's the link : http://devexpress.com/Products/Index/Grids.xml

Upvotes: 1

Related Questions