Popup Menu

Show a popup menu with up to 6 options

Reference the library

C#
using CI.WSANative.Dialogs;

Show a popup menu with specified options

Max of 6 buttons for desktop - if more than max are added an exception will be thrown

C#
WSANativePopupMenu.ShowPopupMenu(0, 0, new List<WSADialogCommand>() { new WSADialogCommand("Option 1"), new WSADialogCommand("Option 2"), new WSADialogCommand("Option 3") }, WSAPopupMenuPlacement.Above, (WSADialogResult result) => { });