Does anyone know how to duplicate the control that is used in the properties
window. I used Spy++ any found that its the "WindowsForms10.Window.8.app1"
control which is not available?
Thanks for any help.
Printable View
Does anyone know how to duplicate the control that is used in the properties
window. I used Spy++ any found that its the "WindowsForms10.Window.8.app1"
control which is not available?
Thanks for any help.
I think you would have to create your own control
I just need to recreate the listview-treeview looking control. How do I make
a listitems collapsable like a treeview?
On second thought and look, it appears that its a treeview with a listview for each
node. Is this correct and how do you do it?
Ok, probably an easier question, how can you make the header of a listview
span across tow columns without the divider line?
Microsoft "has" made that control available in .NET, it's called the PropertyGrid control, here's an example:
VB Code:
Dim propGrid As New PropertyGrid propGrid.Location = New Point(10, 10) propGrid.Size = New Size(200, 250) propGrid.CommandsVisibleIfAvailable = True propGrid.Text = "My Property Grid" Me.Controls.Add(propGrid) propGrid.SelectedObject = textBox1
Wow! Thats awesome. I cant believe that M$ was generous enough to let us use it.
Cool, but I cant believe I wasted a few hours trying to recreate it. :(
Thank You!