Nikhil Agrawal
Nikhil Agrawal

Reputation: 48558

How to create Tooltips like MS Office 2007/2010 in WPF

How can I create complex ToolTips for my WPF RibbonItems like I have seen in MS-Office 2007/2010. A Sample image is given below.

enter image description here

On MSDN I got an image just like that but MSDN does not tell us how we can create it.

enter image description here

If anyone can help me in making Tooltip like MS Office I will appreciate it.

Thanks in advance.

Upvotes: 2

Views: 1151

Answers (2)

Joey
Joey

Reputation: 354456

As you can see in the documentation there are several properties on a RibbonButton that refer to parts of the enhanced tooltip:

Come to think of it, those are the exact properties mentioned in the screenshot you have there.

Upvotes: 3

uday
uday

Reputation: 8710

You can download Ribbon Sample code.

If you are beginner start with this very comprehensive tutorial Creating a Ribbon Application

Specifying Ribbon Image resources

Also I would recommend to read this: Understanding Commands & Controls

For more specific issues you can find quick help in MSDN Ribbon Forum

Hope it helps!

Upvotes: 2

Related Questions