vote up 1 vote down star

I am trying to modify the default style of the ContextMenu in WPF.

Normally you can creat a copy of the default in Expression Blend using the Edit Control Parts (Template) > Edit a Copy menu option. However I can't work out how to do this with a ContextMenu. Any idea how I can get the default style to modify?

I am trying to disable the left side of the context menu where the icons are normally shown.

Thanks!

Update: Maybe I wasn't clear about removing the icons. For example, if you have a context menu with no icons then the whole left side of the menu is wasted space. I would like to modify the default style of the context menu background to remove this. Simply I don't know how to access this default style.

flag

55% accept rate

4 Answers

vote up 1 vote down

Actually the space is not part of the ContextMenu it is part of MenuItem. So just drag a MenuItem to your window in expression blend and create a copy of the control. Hope your ContextMenu declaration is as follows

 <ContextMenu  >
    <MenuItem Header="Copy"/>
    <MenuItem Header="Paste"/>
    <MenuItem Header="Clear"/>
 </ContextMenu>

And inside your MenuItem ControlTemplate you can see the space as bellow. So remove the Icon and First Column of the grid I marked in the screen shot.

alt text

link|flag
Well that gets me the default style for the MenuItem, however it doesn't get me the ContextMenu style. Expression Blend won't let me add a ContextMenu to the Window. – Luke Mar 13 at 7:23
It shows an error, "ContextMenu cannot have logical or visual parent" if I add the ContextMenu to the window. – Luke Mar 13 at 7:25
Yes, there is also styles within the ContextMenu for the left side menu that need to be removed. It is the ContextMenu styles that I can't access using the Expression interface. I have posted a solution below to extract the template using code. – Luke Mar 24 at 4:47
vote up 1 vote down

For templates and styles that are not accessible through the Expression Interface (such as the ContextMenu template) you can use the following code to extract the template:

Dim sb As System.Text.StringBuilder = New System.Text.StringBuilder
Using Writer As TextWriter = New StringWriter(sb)
    System.Windows.Markup.XamlWriter.Save(ContextMenu.Template, Writer)
End Using
Debug.Write(sb.ToString)

Or in C#

var str = new StringBuilder();
using (var writer = new StringWriter(str))
    XamlWriter.Save(ContextMenu.Template, writer);
Debug.Write(str);
link|flag
vote up 0 vote down

The extra space on the left is due to the little check mark that appears when you set IsCheckable and IsChecked to true on MenuItem.

The check mark is in the template for MenuItem so if you edit that you can take it out.

link|flag
vote up 0 vote down

Here is link to article which contains information about replacing template of context menu.

(www).dev102.com/2008/06/20/how-to-create-a-wpf-custom-context-menu/

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.