Can someone point me in the right direction. I trying to have a Listview load from a set directory, that I choose. I have been looking for information on the net, but I have not found anything, or just have been to new to c# that I miss it totally. I like To have a Listview be populated with files from a set directory , and then the user can set its look, and then click on it to load it into a Player. Thia is for a media player I'm creating.
3 replies to this topic
#1
Posted 29 January 2011 - 03:07 PM
|
|
|
#2
Posted 29 January 2011 - 06:00 PM
Maybe Try this code:
Or you can read this.
c# - listview opening directories - Stack Overflow
Good luck with your project. ~ Committed.
DirectoryInfo directory = new DirectoryInfo("C:\\");
FileInfo[] files = directory.GetFiles();
foreach (FileInfo file in files)
{
ListViewItem item = listView1.Items.Add(file.Name);
item.ImageIndex = 0;
item.Tag = file;
}
Or you can read this.
c# - listview opening directories - Stack Overflow
Good luck with your project. ~ Committed.
A man can be defined by what he does when no one is looking.
Science is only an educated theory, which we cannot disprove.
Science is only an educated theory, which we cannot disprove.
#3
Posted 30 January 2011 - 09:28 AM
Thanks for the Code. But can you help tell me some good places to help understand the listview functions more. I need to change the layout of the files and folders, and the option to change from a list, detail, or icon view. That is a lot of information to ask in a forum, so could someone tell me a good website or something to help understand all the functions of the listView. Thanks.
#4
Posted 30 January 2011 - 02:17 PM
Well from a quick glance these two articles look good.
C# Programming Tutorial - Programming Advanced Winforms in C#
_ Beginners Listview LVW tutorial: Various difernt views, add items WITH ICONS, spreadsheet style! _ by Jon Barker
Good luck ~ Committed.
C# Programming Tutorial - Programming Advanced Winforms in C#
_ Beginners Listview LVW tutorial: Various difernt views, add items WITH ICONS, spreadsheet style! _ by Jon Barker
Good luck ~ Committed.
A man can be defined by what he does when no one is looking.
Science is only an educated theory, which we cannot disprove.
Science is only an educated theory, which we cannot disprove.
1 user(s) are reading this topic
0 members, 1 guests, 0 anonymous users


Sign In
Create Account


Back to top









