2

Possible Duplicate:
Ribbon UI Control for WinForms

I am just trying to create a windows application which will have a toolbars similar to ms-office 2007 . can Anyone help me where to start with ?

Community
  • 1
  • 1
Karthik
  • 218
  • 1
  • 7
  • 18

3 Answers3

2

See this question for Winforms

See this for WPF

EDIT

If you really want to develop the ribbon yourself you have to realize that it will take a lot of effort.

There are two main reasons that it will cost you a lot of work.

  1. Microsoft has a patent (pending?) on the looks and functionality of the ribbon. They are willing to allow you to build your own BUT you'll have to stick to their guidelines and you have to sign a license that you will do that.

  2. The users will expect the ribbon to be the same too and the sheer amount of features is enormous.

All in all a lot of work. But if it is to learn from it might be worth it. For production code I'd pick a Microsoft implementation.

Community
  • 1
  • 1
Emond
  • 50,210
  • 11
  • 84
  • 115
1

you can use devexpress ribbon control

Nighil
  • 4,099
  • 7
  • 30
  • 56
1

You may install Dotnetbar and has all that you need.

It has all the Office2007 looking controls such as LabelX, MessageBoxX etc. (for C# Label, MessageBox etc. respectively) to RibbonBar, RibbonPanel etc.

Kev
  • 118,037
  • 53
  • 300
  • 385
Dulini Atapattu
  • 2,735
  • 8
  • 33
  • 47