Intersoft.Client.UI.Navigation Namespace > UXFrame Class : BusyIndicatorTemplate Property |
Public Property BusyIndicatorTemplate As DataTemplate
Dim instance As UXFrame Dim value As DataTemplate instance.BusyIndicatorTemplate = value value = instance.BusyIndicatorTemplate
public DataTemplate BusyIndicatorTemplate {get; set;}
public: property DataTemplate^ BusyIndicatorTemplate { DataTemplate^ get(); void set ( DataTemplate^ value); }
For more information, see Navigation Overview.
<Intersoft:UXPage.Resources> <DataTemplate x:Key="FrameBusyTemplate"> <Grid Opacity="0.8"> <Border BorderThickness="1" HorizontalAlignment="Center" VerticalAlignment="Center" CornerRadius="8" Background="Black"> <Intersoft:UXProgressBar HorizontalAlignment="Left" Width="150" Height="18" IsIndeterminate="True" Margin="20"/> </Border> </Grid> </DataTemplate> </Intersoft:UXPage.Resources> ... <Intersoft:UXFrame x:Name="ContentFrame" BusyIndicatorTemplate="{StaticResource FrameBusyTemplate}" BusyIndicatorLatency="0.8"> <Intersoft:UXFrame.UriMapper> ... </Intersoft:UXFrame.UriMapper> </Intersoft:UXFrame>
Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2