Click here to Skip to main content
15,902,112 members
Please Sign up or sign in to vote.
4.00/5 (1 vote)
See more:
hi i want to make left menu like in window xp in c #, for example when we click "my computer" in window xp a window form open on the left side of that window a menu like on which we have different links like my computer, my network place etc .is to possible in c#? if yes then how??
thanks

[edit]Spurious Code block removed - OriginalGriff[/edit]
Posted
Updated 10-May-11 9:14am
v4
Comments
OriginalGriff 10-May-11 15:05pm    
Please, use the "Improve question" widget, and try to give us more information.
I am sitting at a Windows XP PC and I have no menu of any form on the left of my screen.
What are you trying to do?
BilalAshraf 10-May-11 15:36pm    
Thanks bandle of thanks

I think this is exactly what you looking for. Themed Windows XP style Explorer Bar[^]

Good luck.
 
Share this answer
 
v3
Yes.
It is possible to add that kind of functionality to your application. However, you have to do the work yourself - there is no standard control for it.

First, create a new form
then:
A) add a splitter to the window.
B) On the splitter iteslf (not one of its panels) set Fixed Panel to the left hand panel, and set the width you want with the splitter bar. Then change IsSplitterFixed to true.

You can now put what you want in the panel to emulate the menu: probably LinkLabel controls mostly.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900