You can apply a menu control style on a toolbar by using the Toolbar.MenustyleKey Property. This can be done with the following code snippet,
[XAML]
<window.resources>
<style x:key="{x:Static ToolBar.MenuStyleKey}" targettype="Menu">
<Setter Property='FontSize' Value='14'/>
<Setter Property='FontStyle' Value='Oblique'/>
<Setter Property='FontWeight' Value='Bold'/>
<Setter Property='Background' Value='AliceBlue'/>
</style>
</window.resources>
<grid>
<toolbar>
<menu>
<menuitem header="File">
<menuitem header="New">
<menuitem header="Project">
<menuitem header="File">
</menuitem>
</menuitem>
</menuitem></menuitem></menu>
</toolbar>
</grid>
Share with