Getting a parser error when trying to databind the MaxMaximizedTiles property. Is there anything I should be doing differently?
<igTileView:XamWebTileView.TilePanelSettings> <igTileView:TilePanelSettings MinimizedStripLocation="Bottom" MinimizedTilePaneSizing="True" MaxMaximizedTiles="{Binding MaximizedVisibleTileCount}" /></igTileView:XamWebTileView.TilePanelSettings>
;
Hi Neo,You receive this error because the TilePanelSettings object is a DependencyObject.Silverlight does not support data binding on any object deriving from DependencyObject, but only on objects deriving from FrameworkElement.You can create a property of type TilePanelSettings and then you can use code like this:
<c:XamWebTileView x:Name="myView" DataContext="{StaticResource myDataSource}" ItemsSource="{Binding Items}" DefaultItemsContainer="{StaticResource myDataContainer}" TilePanelSettings="{Binding Settings}" />Marin