How to remove border between window title and content

I created a window with ribbons (2010 - Microsoft.Windows.Controls.Ribbon ).

It looks like this:

enter image description here

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

It should look like Microsoft Office Word:

enter image description here

What can I do so that there is no border between the tabs and the title?

(used by RibbonWindow)

+6
source share
2 answers

Now I use Fluent Ribbon , which solve the problem.

+1
source

It looks like you are using a standard WPF window. Instead, try using the RibbonWindow frame. It integrates the ribbon into the window itself, and not just contains it as a regular control, which is what the Window does.

+9
source

Source: https://habr.com/ru/post/920686/


All Articles