Hello,
I have .NET WPF application and one of requirement is that user may select and copy text outside of my application. My application has to respond to clipboard event. Look up word from dictionary and next to selected text show tooltip with word's translation.
As I understand this has to be accomplished using calls to Windows API.
I have found example code, that accomplishes this task.
One of my first ideas, was to convert this example into library that I can call from .NET application (basically my library would contain 2 methods: show and hide tooltip). Unfortunately my VC++ knowledge is next to nothing.
Is there any other way to solve this problem?
Thank You very much.