Listview with dropdown...

lidds

Junior Contributor
Joined
Nov 9, 2004
Messages
210
I'm trying to create a listview with a dropdown menu within a subitem(cell) exsacually like the properties window within vb.net.

Can anyone help

Cheers

Simon
 
Take a look at the property grid control.
You'll have to add it to the list of controls (right mouse button in the toolbox -> Add/Remove items.... -> browse to property grid and put a check in front of it) as it isnt shown in the list of controls by default.

This is the actual control that is used by Visual Studio to display the properties.
Here is an articles that has more information on the use of the control:
http://www.codeproject.com/dotnet/DeclarativePropertyGrid.asp
but google is your best friend if you want more information ;).
 
Last edited:
Back
Top