ryancheung / ImeSharp

C# wrapper for Windows IME APIs
MIT License
71 stars 12 forks source link

How should I paste the word to third-party program? #9

Closed 102425074 closed 3 years ago

102425074 commented 3 years ago

I am trying to code an input method by this.

I tried the demo program and it runs well.

However, the demo program only works in itself.

Now I am about to paste the word to third-party programs (such as windows notepad).

How can I achieve this? Thank you.

ryancheung commented 3 years ago

You may need this https://github.com/CopyText/TextCopy

102425074 commented 3 years ago

You may need this https://github.com/CopyText/TextCopy

I am afraid there is a misconstrue. I don't want to copy it to the clipboard and paste it somewhere.

I just want it to be the same as the normal input method. When I typing with it, the word will appear on the notepad.

But now it seems the word only can appear on itself while can't appear on the third-party program.

ryancheung commented 3 years ago

It's not what this library does I think. There's no way to use this libary make word appear in another program, unless you write the progrem yourself and integrate with this library to enable IME support.

102425074 commented 3 years ago

It's not what this library does I think. There's no way to use this libary make word appear in another program, unless you write the progrem yourself and integrate with this library to enable IME support.

All right, thank you so much.