Reputation: 13
I am currently starting to program a downloader for a website, I've been looking at downloaders to find out how I should format multiple downloads and I have decide on a table.
But I don't know the name of the control in C# (look at image below).
As seen below:
The red box is the control, I want to use in C#.
I've tried looking at a DataTable but that doesn't seem right.
Upvotes: 0
Views: 77
Reputation: 467
Its a datagrid
, however that looks like it was made with WPF not winforms
Upvotes: 1
Reputation: 3342
For Win Forms use the datagridview from the tools bar and create a custom column for the progress bar.
Upvotes: 0
Reputation: 11954
It may very well be a custom control, so it's nothing that you'd find out of the box.
That said, you can use the Spy++
tool in the Windows SDK to inspect running applications to determine things like this.
See https://msdn.microsoft.com/en-us/library/dd460756.aspx
Upvotes: 0