Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
240
ContextMenu displayed when covered by ChildWindow
posted

I am displaying a control that inherits from ChildWindow after an item is selected from a XamWebContextMenu.  Althought the ChildWindow displays correctly overlayed on top of the page containing the XamWebGrid, the context menu still pops up when the ChildWindow is right-clicked.  Is there something I'm missing that I need to do such as disable the parent control with the grid?  Thanks in advance for any help you can provide.  Please see my ContextMenu below:

<igMenu:ContextMenuService.Manager>

 

 

 

 

 

 

 

<igMenu:ContextMenuManager x:Name="contextMenuManager" OpenMode="RightClick" ModifierKeys="None">

 

 

 

 

<igMenu:ContextMenuManager.ContextMenu>

 

 

 

 

<igMenu:XamWebContextMenu>

 

 

 

 

 

 

 

 

 

 

<igMenu:XamWebMenuItem Tag="OpenItem" Header="Open Item" Click="XamWebMenuItem_Click" />

 

 

 

 

 

 

 

 

 

<igMenu:XamWebMenuItem Tag="Refresh" Header="Refresh" Click="XamWebMenuItem_Click" />

 

 

 

 

</igMenu:XamWebContextMenu>

 

 

 

 

</igMenu:ContextMenuManager.ContextMenu>

 

 

 

 

</igMenu:ContextMenuManager>

 

 

 

 

</igMenu:ContextMenuService.Manager>

 

Parents Reply Children
No Data