Hi,
XamTileView has two properties for setting the visibility of scrolls. Can someone explain how these properties work?
Thanks.
The properties that I mentioned earlier seems to be attached properties not actual properties of XamTileView.
However, is there a way to enable an scroll bar for XamTileView?
XamTileView has no scrollbars and therefore there are no such properties.
However you can place your XamTileView in a ScrollViewer. Moreover there is a property called MinimizedTilePaneSizing inside the TilePanelSettings complex property. if you set it to False, a ScrollBar will be automatically displayed for the minimized TilePanes.
<ig:XamTileView.TilePanelSettings>
<ig:TilePanelSettings MinimizedTilePaneSizing="False"/>
</ig:XamTileView.TilePanelSettings>
I hope this will help!