In addition to Weibo, there is also WeChat
Please pay attention
WeChat public account
Shulou
2025-04-04 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >
Share
Shulou(Shulou.com)06/02 Report--
This article is about how to use ListBox controls in VB.NET. The editor thinks it is very practical, so share it with you as a reference and follow the editor to have a look.
Drag and drop in windows is usually a way to copy or move files, which is fully supported by windows and is the preferred way for many users to manipulate files. In addition, users are used to dragging files to a program to open them, like dragging a doc file to word to open them.
In this example, the VB.NET ListBox control is manipulated with files dragged from windows Explorer. Add a VB.NET ListBox control to the form, set its AllowDrop property to True, and add the following code:
Private Sub ListBox1_DragEnter (ByVal sender As Object, ByVal e As _ System.Windows.Forms.DragEventArgs) Handles ListBox1.DragEnter If e.Data.GetDataPresent (DataFormats.FileDrop) Then e.Effect = DragDropEffects.All End If End Sub Private Sub ListBox1_DragDrop (ByVal sender As Object, ByVal e As _ System.Windows.Forms.DragEventArgs) Handles ListBox1.DragDrop If e.Data.GetDataPresent (DataFormats.FileDrop) Then Dim MyFiles () As String Dim i As Integer 'Assign the files to an array. MyFiles = e.Data.GetData (DataFormats.FileDrop) 'Loop through the array and add the files to the list. For I = 0 To MyFiles.Length-1 ListBox1.Items.Add (MyFiles (I)) Next End If End Sub
You may have noticed that the Effect property in the DragEnter event is set to DragDropEffects.All. Because the file itself is not actually copied or moved, it doesn't matter which AllowedEffects the source control is set to, so specifying All is fine for any FileDrop.
In the above example, the FileDrop format contains the full path of each dragged file.
Thank you for reading! This is the end of this article on "how to use ListBox controls in VB.NET". I hope the above content can be of some help to you, so that you can learn more knowledge. if you think the article is good, you can share it for more people to see!
Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.
Views: 0
*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.
Continue with the installation of the previous hadoop.First, install zookooper1. Decompress zookoope
"Every 5-10 years, there's a rare product, a really special, very unusual product that's the most un
© 2024 shulou.com SLNews company. All rights reserved.