Is it possible to disable the Application Menu on the Ribbon Control? (WPF)

PlayKid picture PlayKid · Sep 17, 2009 · Viewed 15.2k times · Source

Is there a way to disable to Application Menu, the circle thing on the left hand corner, so the user can't click on it?

I have absolutely no use on that, and cannot think of anything I can use that, I can't find any options to disable it.

Please help

Many thanks

Answer

Trainee4Life picture Trainee4Life · Sep 17, 2009

I did something like this, and managed to remove the Application Menu. Do check if this is the way you wanted it to be.

<r:Ribbon.ApplicationMenu>
    <r:RibbonApplicationMenu Visibility="Collapsed" >
    </r:RibbonApplicationMenu>
</r:Ribbon.ApplicationMenu>