Perhaps I'm having a Post-Ballmer-Peak Moment. I'm hoping that someone can help point out the obvious to me.

Why does this code generate a context menu on right click:

<Canvas Background="Transparent">
  <Canvas.ContextMenu>
    <ContextMenu>
      <TextBlock>WTF?</TextBlock>
    </ContextMenu>
  </Canvas.ContextMenu>
</Canvas>

And this code doesn't generate a context menu:

<Canvas>
  <Canvas.ContextMenu>
    <ContextMenu>
      <TextBlock>WTF?</TextBlock>
    </ContextMenu>
  </Canvas.ContextMenu>
</Canvas>
link|improve this question
WTF, indeed. I thought you were crazy at first, but I got the same result. WPF baffles me sometimes also. Hopefully, there is some sane reason for this. – daub815 May 16 '09 at 3:33
feedback

1 Answer

up vote 14 down vote accepted

It's because the Transparent brush allows an area to be hittable and thus receive and respond to mouse clicks, whereas the default null brush doesn't. In other words, without any brush defined, the region becomes "hollow" and clicks pass through; with a brush defined (even a transparent one), they are "solid" and clicks can be received.

See this helpful article on WPF brushes for more info.

link|improve this answer
2  
I retract my previous WTF statement. That makes perfect sense. +1 – daub815 May 16 '09 at 3:50
That's really good to know, actually. And it actually makes sense why it does that. Thanks – Joel May 16 '09 at 4:55
No problem! Glad to be of help. – John Feminella May 16 '09 at 10:33
Just learning about the canvas, but this is a great description. concise and to the point. kudos good sir! – Nathan Tregillus Feb 17 '11 at 16:49
feedback

Your Answer

 
or
required, but never shown

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