private static extern bool PrxCommonDialogUserMessage(EnumUserMessageType type, bool infobar, string str, string button1, string button2, string button3);
public static bool ShowUserMessage(EnumUserMessageType type, bool infoBar, string str) { return(PrxCommonDialogUserMessage(type, infoBar, str, "1", "2", "3")); }