<Grid RowDefinitions="10*,*">
<Image Grid.Row="0" Name="image" Margin="75" Source="{Binding !Loaded, Converter={x:Static av:BitmapTypeConverter.Instance}}"/>
<ProgressBar Grid.Row="1"
MaxWidth="{Binding #image.Width}"
HorizontalAlignment="Stretch"
VerticalAlignment="Bottom"
Height="20"
IsIndeterminate="{Binding LoadingProcess.IsIndeterminate}"
Value="{Binding LoadingProcess.Percent}"
Maximum="1"/>
<TextBlock Grid.Row="1"
MaxWidth="{Binding #image.Width}"
HorizontalAlignment="Center"
VerticalAlignment="Bottom"
Height="20"
Text="{Binding LoadingProcess.Status}"/>
</Grid>
I think we should add
enum TransparencySupport
{
None,
Slow
Fast
}
to our TopLevel