Should be possible... but is definitely not easy (at least for me).
I'm doing around with a custom listview (added some functionality and new properties) by myself but have no experience with custom drawing. What i know is, that you have to do a complete custom drawing for a result like in the picture.
I tried custom drawing once because i wanted alternating line background colors, custom grid-lines and -color and also a custom highlight color but gave up for now because i had proplems with displaying checkboxes (the display style of them) in the lines and deceided that i use the default style for now in my app.
I got the alternating background for the rows working due to a different approach (firing custom event using a modified ListViewItemCollection) but still want to have a custom grid one day.
I never used a DataGridView so far so I can't say anything about that but I think that it should be possible to extend a listview to do what you want (depending on the needed functionality).
A good starting point should be to just inherit a listview, set it to OwnerDraw and play around with the related events (OnDrawColumnHeader, OnDrawSubItem, OnDrawItem).
You can also take a look at "ObjectListView", an Open-Source Project with a VERY extended Listview. I wasn't able to get it running because i use VB-Net Express.