Hi,
at the moment I am searching for a way on having language support within the scrollbar context menu. It contains entries like Scroll Here, ..., Scroll up, Scroll Down. You get it by right clicking on the scrollbar.
So far I know two ways on changing the language for context menus:
1. dynamic:
void OnContextMenuOpening(sender, args)
...
item.Header = "mytext"
2. static:
SetCustomString
SetCustomString("actipro_key", "mytext");
Both solutions work in general, but not in the case of this scrollbar context menu.
What I found out is, that there existed a way to change the scrollbar context menu entries in earlier versions of ActiPro.
It used to work like this:
ActiproSoftware.Products.WinUICore.AssemblyInfo.Instance.Resources.SetCustomString(name, value);
This functionality has been available in "ActiproSoftware.WinUICore.Net20.dll".
So my questions are:
Do I still have this possibility in ActioPro 2013.1?
Do I need to install a special component?
Is there a way to remove this context menu in general?
Thank you & best regards