Hi, in vb 6.0 the listview had a view property, if you set that property to Icons you could move the ítems wherever you wanted but now i don't see anything like that, the behaviour i want to have is like the Windows desktop where you can move the ícons and put them where you want by drag and drop by the way is for menú, i wnat the user can have the hability to move the menú icons wich in ths case are listview ítems.. thanks..
disjes_1 0 Newbie Poster
Recommended Answers
Jump to PostPerhaps something like this will work for you.
Public Class Form1 Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load With ListView1 .Alignment = ListViewAlignment.SnapToGrid .AllowDrop = True .AutoArrange = False .Scrollable = False .View = View.LargeIcon End With End Sub Private Sub ListView1_ItemDrag(ByVal …
Jump to Postit seems like you have experience with listviews
Not really, I do not particularly like this control.
n vb 6 you could set the BackgroundImageAligment in .net thats not allowed
Yeh, if you do a search you will find that in the original .Net they had …
All 5 Replies
edionwe.desmond 0 Newbie Poster
TnTinMN 418 Practically a Master Poster
disjes_1 0 Newbie Poster
TnTinMN 418 Practically a Master Poster
disjes_1 0 Newbie Poster
Be a part of the DaniWeb community
We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.