views:

55

answers:

1

I want to change Menu's Text color, but not MenuItem.

A: 

You should be able if its Visual c# you should be able to right click the widget and adjust the foreground property. Foreground usually sets the text color in Visual .net widgets like Labels, buttons, textboxes, so I think it'll probably be there for menus.

In Xaml:

    <Menu Foreground="Red">
        <MenuItem Header="_File"></MenuItem>
    </Menu>

Didn't see the menu item but not menu... The File will be blue Edit will be red.. You datatemplate to set your style depending on the menu item

  <Menu Foreground="Red">
        <MenuItem Foreground="Blue" Header="_File"></MenuItem>
        <MenuItem Header="_Edit"></MenuItem>
    </Menu>
Dave Hanson