R – WPF Quad Context Menu

contextmenuwpfwpf-controls

N.B THIS QUESTION HAS BEEN UPDATED, READ FURTHER DOWN

Hi,

I want to create a custom context menu that has 4 sub-menus, each in their own quadrant (top left, top right, bottom left, bottom right). Similar to 3ds Studio Max.

This is how I've approached the issue so far:
– create a custom WPF control, derive from ContextMenu[1]
– declare 4 dependency properties of ContextMenu, these will be menus displayed and can be set from XAML.
– AddOwner to the ContextMenu.IsOpenProperty, adding a property changed notification.
– when the IsOpen property changes set the IsOpen property of 4 child context menus.
– using ContextMenuService set the Vertical and Horizontal offsets of the context menus to make them appear in each quadrant; binding the actual height and width properties to calculate the offsets.

[1] Need to derive from context menu otherwise you cannot assign it to the ContextMenu property on the Window.

This appears to work, there are issues with the menus NOT staying open (they're being closed as the focus is outside the menu) but I'm sure using Reflector.NET find a way around this.

This is my first custom WPF control that I've attempted to write; and not sure if this is best approach.

Any suggestions/ideas on how to create this Quad Context menu?

Best Answer

I can think of two approaches, neither one are necessarily that clean but has the potential to work if you have the time.

Approach 1

Use a context menu but through setting the Template make it so that the ContextMenu really just shows a control that happens to open other windows. Perhaps tricks can be done so that opening these secondary menus doesn't take the focus away. This might end up still causing the original problem.

Approach 2

What happens if you set ContextMenu.StaysOpen to false and then try to control when the menu closes yourself?

Related Topic