i am building a C# application, i have explored its all controls but i cant find the left menu style which i usually see in software applications for example visual studio, i am attaching the image of what i need.
I don't think that control is available, which means you would have to make one yourself. Here is a link from someone that made one. I haven't tried it: Visual Studios "My Project" Tab Control
There is no such a control in the ToolBox by default. But you could create one for you.
- Creat a user controller.
- Added a SplitContainer and set Dock.Fill.
- Add a FlowLayoutPanel to the Left panel. Add buttons or labels as you wish and implement the click event.
精彩评论