roxrook
roxrook

Reputation: 13853

What control should I use for this UI?

I'm relatively new to WPF, so could anyone give me some guidelines on how to build this UI (it's main panel of Paint on Windows) enter image description here

I prefer code style over XAML (just for the learning purpose), so a general idea on what controls should be used would be more than enough, I can handle the detail of each element.

Upvotes: 2

Views: 103

Answers (4)

Rockstart
Rockstart

Reputation: 2377

When I had the same question in my mind, I did an analysis of all ribbon controls and collected their links.

Here are they

http://fluent.codeplex.com/

http://wpf.codeplex.com/wikipage?title=WPF%20Ribbon%20Preview&ProjectName=wpf

http://www.microsoft.com/en-us/download/details.aspx?id=11877

Code Project Links:

http://www.codeproject.com/Articles/24062/A-Demonstration-for-WPF-Ribbon-Control-Library http://www.codeproject.com/Articles/23199/WPF-C-Ribbon-Control-Library http://www.codeproject.com/Articles/23343/A-Graphical-WPF-Ribbon-Control-Builder

Upvotes: 1

Ionică Bizău
Ionică Bizău

Reputation: 113335

There are online templates. I think that you are searching for Ribbon Control Template. Then, Codeproject has a great article about this.

You can check this msdn article, too.

In these links you have a lot of examples.

To use it you will create a new project with an online template, like in the image bellow (you see: it's selected WPF Ribbon Application: enter image description here

Upvotes: 3

abramlimpin
abramlimpin

Reputation: 5077

That is a Ribbon control. You can check this out: Introducing Microsoft Ribbon for WPF

Upvotes: 2

Prescott
Prescott

Reputation: 7412

Probably want to use the Ribbon Control? http://www.microsoft.com/en-us/download/details.aspx?id=11877

Upvotes: 1

Related Questions