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>

Parents
No Data
Reply
  • 355
    Suggested Answer
    Offline posted

    This is an issue of scope when you put something into the BusyIndicator it applies to its children. If you want it to cover the entire page you must put it higher in the visual tree. Try putting the TileView into the BusyIndicator

Children