How to create a menu in WPF that has Microsoft Web Application styling
We have been tasked with designing an enterprise application in WPF that will replace a battleship grey Winforms application with a modern look and feel. We like the look and feel that Microsoft web applications currently possess: We could create these menus in WPF in the usual way: <DockPanel> <Menu DockPanel.Dock="Top"> <MenuItem Header="_File"> <MenuItem Header="_New" /> <MenuItem Header="_Open" /> <MenuItem Header="_Save" /> <Separator /> <MenuItem Header="_Exit" /> </MenuItem> </Menu> <TextBox AcceptsReturn="True" /> </DockPanel> But we'd get something that looks like a Winforms menu. I