Skip to content

Instantly share code, notes, and snippets.

@Duraiamuthan
Created December 1, 2017 20:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Duraiamuthan/f2cf94ef8c43bc5c5ce3bba13bf8d96d to your computer and use it in GitHub Desktop.
Save Duraiamuthan/f2cf94ef8c43bc5c5ce3bba13bf8d96d to your computer and use it in GitHub Desktop.
Re-usable windows phone overlay cum progress bar
<Grid Background="#C444" Visibility="{Binding showOverlay, Converter={StaticResource BoolToVisibleOrCollapsed}}">
<StackPanel Orientation="Vertical" VerticalAlignment="Center" HorizontalAlignment="Center">
<ProgressBar Margin="0,15,0,0"
IsIndeterminate="{Binding showOverlay}"
IsEnabled="{Binding showOverlay}" Foreground="Black"/>
<TextBlock Visibility="Visible" Margin="6,6,6,15" Foreground="Black" FontSize="21" TextWrapping="WrapWholeWords" HorizontalAlignment="Center" Text="Loading..."/>
</StackPanel>
</Grid>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment