views:

214

answers:

1

In silverlight,

  1. I got a textbox which I want to be multiline and have mousescrolling available.
  2. If I only use textbox then I dont have mousescrolling.
  3. If I use a scrollviewer I will have mousescrolling. BUT everytime my writing exceeds the rows that are shown from start the text and caret just dissapears without the scrollviewer doing anything.
  4. How do I solve the problem so I get the caretposition effects the scrollviewer?

I sofar not managed to find someone with the exact same problem as me.

A: 

Stop using a scroll viewer and set the TextBox VerticalScrollBarVisibility property to Auto.

AnthonyWJones