H Mihail
H Mihail

Reputation: 623

MVVM Caliburn.micro with ribbon control

I want to implement a Ribbon control (Microsoft or Fluent Ribbon) in my main form in my WPF app. Most of the ribbon controls (more than 95%), grouped in tabs and groups will just open other windows. The ribbon control will contain a lot of buttons (more than 60).

What would be a good approach to follow, in respect to MVVM pattern? A pointer to a little tutorial would be nice, since I am just starting with Caliburn and MVVM.

Thanks!

Upvotes: 1

Views: 685

Answers (1)

StepUp
StepUp

Reputation: 38114

In my view and I believe one of the most used is the Microsoft one. Tutorial about Microsoft Ribbon

I want to notify about one bag in Microsoft Ribbon.

FluentRibbon is OpenSource, so you can download this library and customize to your needs. And FluentRibbon has the following option(view when you click File in MS Word) which Microsoft library does not have: enter image description here

Both controls are really simple in use and are convenient in use in scope of MVVM, but Fluent Ribbon is not so great at design time building in Visual Studio, but in all other areas is superb.

Upvotes: 1

Related Questions