vote up 4 vote down star

Apparantly when users right-click in our WPF application, and they use the Windows Classic theme, the default ContextMenu of the TextBox (which contains Copy, Cut and Paste) has a black background.

I know this works well:

<Page xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"

      xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">

  <TextBox ContextMenu="{x:Null}"/>

</Page>

But this doesn't work:

<Page xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
      xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">

<Page.Resources>

 <Style x:Key="{x:Type TextBox}" TargetType="{x:Type TextBox}">
   <Setter Property="ContextMenu" Value="{x:Null}"/>
</Style>
</Page.Resources>

  <TextBox/>
</Page>

Does anyone know how to style or disable the default ContextMenu for all TextBoxes in WPF?

Many thanks! :)

flag

50% accept rate

4 Answers

vote up 8 vote down check

To style ContextMenu's for all TextBoxes, I would do something like the following:

First, in the resources section, add a ContextMenu which you plan to use as your standard ContextMenu in a textbox.
e.g.

<ContextMenu x:Key="TextBoxContextMenu" Background="White">
  <MenuItem Command="ApplicationCommands.Copy" />
  <MenuItem Command="ApplicationCommands.Cut" />
  <MenuItem Command="ApplicationCommands.Paste" />
</ContextMenu>

Secondly, create a style for your TextBoxes, which uses the context menu resource:

<Style TargetType="{x:Type TextBox}">
  <Setter Property="ContextMenu" Value="{StaticResource TextBoxContextMenu}" />
</Style>

Finally, use your text box as normal:

<TextBox />

If instead you want to apply this context menu to only some of your textboxes, do not create the style above, and add the following to your TextBox markup:

<TextBox ContextMenu="{StaticResource TextBoxContextMenu}" />

Hope this helps!

link|flag
vote up 1 vote down

Try removing the x:Key attribute from the Style resource, leaving TargetType. I know, you're supposed to have that x:Key for a resource, but if you have it along with your TargetType the Key prevails.

Here's a sample style that I use in a project to skin all tooltips in one of my apps (this is in App.Resources--notice, no Key)

 <Style
    TargetType="{x:Type ToolTip}">
    <Setter
      Property="Template">
      <Setter.Value>
        <ControlTemplate
          TargetType="{x:Type ToolTip}">
          <Grid
            Width="{TemplateBinding Width}"
            Height="{TemplateBinding Height}">
            <Rectangle
              RadiusX="9"
              RadiusY="9"
              Stroke="LightGray"
              StrokeThickness="2">
              <Rectangle.Fill>
                <RadialGradientBrush>
                  <GradientStop />
                  <GradientStop
                    Color="FloralWhite"
                    Offset="0" />
                  <GradientStop
                    Color="Cornsilk"
                    Offset="2" />
                </RadialGradientBrush>
              </Rectangle.Fill>
            </Rectangle>
            <ContentPresenter
              Margin="6 4 6 4" />
          </Grid>
        </ControlTemplate>
      </Setter.Value>
    </Setter>
  </Style>
link|flag
vote up 0 vote down

Doesn't matter, if you do not provide a key, it will use the TargetType as key just the same way my example uses :)

Taken from MSDN on Style:

Setting the TargetType property to the TextBlock type without setting an x:Key implicitly sets the x:Key to {x:Type TextBlock}. This also means that if you give the above Style an x:Key value of anything other than {x:Type TextBlock}, the Style would not be applied to all TextBlock elements automatically. Instead, you need to apply the style to the TextBlock elements explicitly.

http://msdn.microsoft.com/en-us/library/system.windows.style.targettype.aspx

link|flag
vote up 0 vote down

@Brad: I do not see the difference in creating a newly styled ContextMenu or setting the ContextMenu to null..

I still have to use the Setter to set the ContextMenu on the TextBox and that is the same issue as setting the ContextMenu to null...

Another solution seems to be to style the ContextMenu, it is still produces the black background, while I explicitly set the Background to White in a Style of ContextMenu, like so:

<Style TargetType="{x:Type ContextMenu}">
   <Setter Property="Background" Value="White"/>
</Style>

Alas, that does not seem to work either... :(

Edit: It seems I was wrong.. Aparantly it does work when you create a simular ContextMenu and set the menu to that one as suggested by Brad... It is still a bit weird while this does work and setting the value to null doesn't...

Ah well... kudo's to you Brad! :)

link|flag

Your Answer

Get an OpenID
or

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