Silverlight textbox doesn't scroll -


the following code shows text box in silverlight application:

<border grid.row="2"  style="{staticresource clusterdocumentsviewouterborder}">      <scrollviewer style="{staticresource favsscrollviewer}" margin="7,7,7,7" verticalscrollbarvisibility="auto" >           <textbox name="txtdoc"  allowdrop="true" margin="5" background="white" fontsize="14" fontstyle="italic" isreadonly="true" textwrapping="wrap"/>                          </scrollviewer> </border> 

the scrollbar displayed doesn't scroll text box.

i tried

<textbox name="txtdoc"  allowdrop="true" margin="5" background="white" fontsize="14" fontstyle="italic" isreadonly="true" textwrapping="wrap" scrollviewer.verticalscrollbarvisibility="auto"/>    

but scroll bar not visible in one.

any ideas?


Comments

Popular posts from this blog

c++ - Is it possible to compile a VST on linux? -

java - Output of Eclipse is rubbish -

jquery - Confused with JSON data and normal data in Django ajax request -