Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
275
BusyIndicator in tilePane
posted

The busyindicator doesn't seem to display if its inside a tilePane.  It behaves correctly i.e. the button is not available until bsyFoo.IsBusy is set to false.  It seems to work fine if its outside of the <XamWebTileView>.  Is there a workaround / fix?

Xaml:

 <igTileView:TilePane Header="My Header Text"  Style="{StaticResource MyTilePane}">
                <toolkit:BusyIndicator x:Name="bsyFoo" IsBusy="True">
                <StackPanel>
                        <Button Content="btnFoo" />
                </StackPanel>
                </toolkit:BusyIndicator>
            </igTileView:TilePane>