Hi there,

I need to do something like the Visual Studio "settings" window, i.e.,
having a TreeView on the left side and some kind of multi-panel (or
multi-page) control on the right side.

What should I use on the right side? I thought it was a TabControl, but I
can't find a way to make the TabPage headers invisible.

Thanks in advance for any ideas,

-Benton
Using VS 2005.

Re: Multi-page configuration with TreeView. How is it done? by Herfried

Herfried
Wed Dec 07 16:16:11 CST 2005

"Benton" <no@spam.com> schrieb:
> I need to do something like the Visual Studio "settings" window, i.e.,
> having a TreeView on the left side and some kind of multi-panel (or
> multi-page) control on the right side.
>
> What should I use on the right side? I thought it was a TabControl, but I
> can't find a way to make the TabPage headers invisible.

You could use a set of usercontrols.

--
M S Herfried K. Wagner
M V P <URL:http://dotnet.mvps.org/>
V B <URL:http://classicvb.org/petition/>


Re: Multi-page configuration with TreeView. How is it done? by WineNCheese

WineNCheese
Wed Dec 07 16:22:06 CST 2005

It's a PropertyGrid. If you right click in the Windows Forms section of the
toolbox that is visible when you are editing a form, choose Add/Remove
Items..., and in the dialog, find the PropertyGrid control. It is in the
System.Windows.Forms namespace.

I started trying to use Microsoft's, but eventually wrote my own - their's
is a pain to work with. If you want to work with their's there are some
helpful articles out there...

WNC


"Benton" <no@spam.com> wrote in message
news:OlUETn3%23FHA.1312@TK2MSFTNGP09.phx.gbl...
> Hi there,
>
> I need to do something like the Visual Studio "settings" window, i.e.,
> having a TreeView on the left side and some kind of multi-panel (or
> multi-page) control on the right side.
>
> What should I use on the right side? I thought it was a TabControl, but I
> can't find a way to make the TabPage headers invisible.
>
> Thanks in advance for any ideas,
>
> -Benton
> Using VS 2005.
>
>
>
>
>



Re: Multi-page configuration with TreeView. How is it done? by WineNCheese

WineNCheese
Wed Dec 07 16:25:32 CST 2005

Sorry, I think I misread your question. Ignore the previous...

"WineNCheese" <blah@nosuchemail.com> wrote in message
news:Oy$Ooy3%23FHA.3096@tk2msftngp13.phx.gbl...
> It's a PropertyGrid. If you right click in the Windows Forms section of
> the toolbox that is visible when you are editing a form, choose Add/Remove
> Items..., and in the dialog, find the PropertyGrid control. It is in the
> System.Windows.Forms namespace.
>
> I started trying to use Microsoft's, but eventually wrote my own - their's
> is a pain to work with. If you want to work with their's there are some
> helpful articles out there...
>
> WNC
>
>
> "Benton" <no@spam.com> wrote in message
> news:OlUETn3%23FHA.1312@TK2MSFTNGP09.phx.gbl...
>> Hi there,
>>
>> I need to do something like the Visual Studio "settings" window, i.e.,
>> having a TreeView on the left side and some kind of multi-panel (or
>> multi-page) control on the right side.
>>
>> What should I use on the right side? I thought it was a TabControl, but I
>> can't find a way to make the TabPage headers invisible.
>>
>> Thanks in advance for any ideas,
>>
>> -Benton
>> Using VS 2005.
>>
>>
>>
>>
>>
>
>



Re: Multi-page configuration with TreeView. How is it done? by Benton

Benton
Wed Dec 07 18:21:51 CST 2005

>> I need to do something like the Visual Studio "settings" window, i.e.,
>> having a TreeView on the left side and some kind of multi-panel (or
>> multi-page) control on the right side.
>>
>> What should I use on the right side? I thought it was a TabControl, but I
>> can't find a way to make the TabPage headers invisible.

> You could use a set of usercontrols.

Excellent! Seems to do the trick. Much appreciated.

Regards,

-Benton