HI, you can use arbitrary icon identifier as you like, what matters is
that it must be unique in your add-on resource (and must be a positive
value in the signed short value range also (eg < 32768)). How to create
image fileYou should create a .svg i...
Hi, the UCPopupMenu does not support hierarchical menu elements indeed.
You can add a pushbutton with an arrow icon and open a context menu
aligned on the button edge. The custom context menu can have a
hierarchical struct looking like the attached p...
Or if you have utf8 characters in a file for example, you can construct
UniString with this constructor: char* utf8Chars; GS::UniString uStr
(utf8Chars, CC_UTF8);
I did not compile this code, but I think something like this:
std::wstring wStr = L("中文测试");GS::UniString uStr (wStr.c_str()); The L()
macro forces those characters to compile as utf16.