Page 1 of 1

How can i get a listview as this

Posted: Sun Feb 10, 2013 9:52 pm
by AnoPem
How can i get a listview that looks like this?
Image

Re: How can i get a listview as this

Posted: Sun Feb 10, 2013 11:04 pm
by Dummy1912
hello m8
i think thats not a listview maybe you can use custom controls for that
to load into a flowlayoutpanel.

Re: How can i get a listview as this

Posted: Sun Feb 10, 2013 11:08 pm
by AnoPem
Dummy1912 wrote:
hello m8
i think thats not a listview maybe you can use custom controls for that
to load into a table thingy.
Do you have any idea how i can obtain that ?

Re: How can i get a listview as this

Posted: Sun Feb 10, 2013 11:14 pm
by Dummy1912
something like this
Code: Select all
FlowLayoutPanel1.Controls.Clear()
                       
                Dim b As New _Box2() 'your custom control
                b.Text = "test"
                b.Size = New Size(500, 130)
 
                FlowLayoutPanel1.Controls.Add(b)


Re: How can i get a listview as this

Posted: Mon Feb 11, 2013 12:19 am
by Scottie1972
here is a example of a Fake-ListView.
To make it look more like the one above that you posted, use image.

Image
Fake-ListView.zip