Show a popup menu with up to 6 options
C#using CI.WSANative.Dialogs;
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) =>
{
});