xaml - ScrollViewer not showing C# -


i new c# , not understand scrollviewer. please see code below , tell me why no scroll bar becomes visible when below mentiond groupbox gets displayed on screen. highly appreciated.

<scrollviewer scrollviewer.verticalscrollbarvisibility="auto" grid.row="5">     <groupbox name="grpdetail"  margin="5"  height="auto" grid.row="5" scrollviewer.verticalscrollbarvisibility="visible">         <my2:ucdisbursmentdetail grid.row="5" x:name="ucdisbursmentdetail" visibility="collapsed"></my2:ucdisbursmentdetail>     </groupbox> </scrollviewer> 

your scrollviewer bigger it's content therefore doesn't need show scrollbar. add height it

<scrollviewer height="300">     ... </scrollviewer> 

Comments

Popular posts from this blog

C# random value from dictionary and tuple -

cgi - How do I interpret URLs without extension as files rather than missing directories in nginx? -

.htaccess - htaccess convert request to clean url and add slash at the end of the url -