Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Basically, I can't scroll scrollviewer of WPF for the first time, If not clicking control once.

I tried to use WPF API as Focus(), SetFocus Win32 API, SendMessage and PostMessage as SetCursor after watching windows event with Spy++. But It didn't work.

Only thing I can do scroll is to use mouse_event API to click forcibly.

[DllImport("user32.dll")] static extern void mouse_event(int flags, int dX, int dY, int buttons, int extraInfo);

Do you have any solution for scrolling???

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.