Visual Studio style options dialog
-
Does anyone know of a control or method for creating an options dialog like that used by visual studio? Basically there's a treeview on the left side of the dialog and depending on what you select it displays the panel that's associated to that node. I tried to implement this with a tabcontrol in vs2005 but there's no way to hide the tabs at the top. Can I just override that pain event? Thanks, Rob Tomson -- There are 10 kinds of people. Those who understand binary and those who don't.
-
Does anyone know of a control or method for creating an options dialog like that used by visual studio? Basically there's a treeview on the left side of the dialog and depending on what you select it displays the panel that's associated to that node. I tried to implement this with a tabcontrol in vs2005 but there's no way to hide the tabs at the top. Can I just override that pain event? Thanks, Rob Tomson -- There are 10 kinds of people. Those who understand binary and those who don't.
Use a big panel with user controls inside, and just show the user control for the selected tree item. -- LuisR
Luis Alonso Ramos Intelectix - Chihuahua, Mexico Not much here: My CP Blog!
-
Does anyone know of a control or method for creating an options dialog like that used by visual studio? Basically there's a treeview on the left side of the dialog and depending on what you select it displays the panel that's associated to that node. I tried to implement this with a tabcontrol in vs2005 but there's no way to hide the tabs at the top. Can I just override that pain event? Thanks, Rob Tomson -- There are 10 kinds of people. Those who understand binary and those who don't.
If you want to integrate with Visual Studio, you should check out the Visual Studio Extensibility Center/[^], there is all kinds of documentation for writing add-in's for Visual Studio there.
- Nick Parker Microsoft MVP - Visual C#
My Blog | My Articles