Connor Albright
Connor Albright

Reputation: 733

I want this control in .net

I want to build a control like the one built into the image below. Its in the file menu for Microsoft Office 2010. I have seen it before but I dont know what it is called.

  1. What is it called
  2. Where could I find such a control for .net?

The control I want

Upvotes: 0

Views: 141

Answers (3)

Daniel May
Daniel May

Reputation: 8226

The closest to what you're looking for is a Ribbon control.

However, I'm sure you'd be able to create the same effect using an ItemsControl that can handle a ItemsTemplate and style that to look the way you need it to look, then have content on the right hand side dynamically change bound to the selected item of theItemsControl.

Upvotes: 1

gmn
gmn

Reputation: 4319

Looks like a styled vertical WPF tab control with buttons replacing some of the tab headers. You could probably create something similar in wpf using the style and template features.

Upvotes: 0

Robert Levy
Robert Levy

Reputation: 29073

If you don't want to use a full blown Ribbon control, then just take a listbox and style it to look pretty. Much easier in WPF than WinForms (you didn't specify which you are using)

Upvotes: 1

Related Questions