Complex layout in datagridview

.net, c#, datagridview, winforms

Solution

You have to create a `UserControl` for each item and then you can use a DataRepeater or a FlowLayoutPanel.

I did things like this in the past with WinForms, so you can be sure that it's doable. Looks like WPF has erased all my previous knowledge on WinForms, kindof a virus :)

Problem

I'm trying to accomplish something like this: Is this possible with datagridview? or ListView, or any other component in windows forms? Notice the paddings and (most important) labels on top of each other. How can I accomplish this in C# .NET?

Original source