David
David

Reputation: 4117

how to remove the border between the window title and content

I have create a Window with Ribbons (2010 - Microsoft.Windows.Controls.Ribbon).

It looks like that:

enter image description here

Now, is there a border over the tabs (between the tabs and the title). This is very ugly.

It should looks like Microsoft Office Word:

enter image description here

What can I do, that there is no border between the tabs and the titlebar?

(The RibbonWindow is used)

Upvotes: 6

Views: 1103

Answers (2)

David
David

Reputation: 4117

I use now the Fluent Ribbon, that solve the problem.

Upvotes: 1

John Bowen
John Bowen

Reputation: 24453

It looks like you're using the standard WPF Window. Try using the Ribbon framework's RibbonWindow instead. It integrates the Ribbon into the window itself rather than just containing it like a normal control, which is what Window does.

Upvotes: 9

Related Questions