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
Post a Comment