LISTVIEW C#
-
Hi, I looking for a sample where a listview is using. In the sample I would like : - add icon, - add progressbar, - add combobox, - add highlight row, - add sort column, - add blinking row, - change colour of row, column or subitem, - using context menu for each row, - find idex of an subitem, - select different views : details, large,list,... - add tooltip for each row or subitem, -... youssef
-
Hi, I looking for a sample where a listview is using. In the sample I would like : - add icon, - add progressbar, - add combobox, - add highlight row, - add sort column, - add blinking row, - change colour of row, column or subitem, - using context menu for each row, - find idex of an subitem, - select different views : details, large,list,... - add tooltip for each row or subitem, -... youssef
You're not looking hard enough, then. Try searching CodeProject or use google. There's plenty of examples out there, though not with everything in that list. My recommendation is to use a third-party library like those from http://www.devexpress.com/[^] or http://www.infragistics.com[^]. Adding all that is a lot more work than you probably think.
Microsoft MVP, Visual C# My Articles
-
Hi, I looking for a sample where a listview is using. In the sample I would like : - add icon, - add progressbar, - add combobox, - add highlight row, - add sort column, - add blinking row, - change colour of row, column or subitem, - using context menu for each row, - find idex of an subitem, - select different views : details, large,list,... - add tooltip for each row or subitem, -... youssef
You lucked out, although searching CodeProject before posting might've turned this up. An article was featured on the CodeProject homepage today: http://www.codeproject.com/cs/miscctrl/aa_listview.asp[^]
Microsoft MVP, Visual C# My Articles
-
You lucked out, although searching CodeProject before posting might've turned this up. An article was featured on the CodeProject homepage today: http://www.codeproject.com/cs/miscctrl/aa_listview.asp[^]
Microsoft MVP, Visual C# My Articles
-
Thanks, But I see this link. I tested and some properties doesn't exist from my request. If you know a link where I can find more samples it is great even if I must to buy. Best regards youssef
Look, you're not going to find such a complex control for free! Either buy one, or read the Platform SDK and .NET Framework SDK about Windows Common Controls, Windows messages, Windows Forms, and either make your own or enhance the existing
ListView
or controls like the one I gave you a link for. It's not a simple project to throw something like this together and if you're just ripping off other people's source you'll never learn anything. There's plenty of examples out there to give you a good start. Learning what it all means and how to add to it is up to you.Microsoft MVP, Visual C# My Articles
-
Look, you're not going to find such a complex control for free! Either buy one, or read the Platform SDK and .NET Framework SDK about Windows Common Controls, Windows messages, Windows Forms, and either make your own or enhance the existing
ListView
or controls like the one I gave you a link for. It's not a simple project to throw something like this together and if you're just ripping off other people's source you'll never learn anything. There's plenty of examples out there to give you a good start. Learning what it all means and how to add to it is up to you.Microsoft MVP, Visual C# My Articles