Cimbalino appbar, blinking while changing pages

160 views Asked by At

Every time, when i'm navigating to the page with minimized appbar, or to the page without appbar, i see weird blinking at the bottom of the page.

First page is like this enter image description here

But when transaction starts, i see black background enter image description here

And its lasts during all transaction enter image description here

How to set that background to white?

EDIT: tried to set appbar's opacity.. well, sometimes it works, but sometimes not. I have it like this

<Grid>
****
    <interactivity:Interaction.Behaviors>
        <cimbalino:ApplicationBarBehavior>
            <cimbalino:ApplicationBarIconButton 
                Click="MyEvent"
                IconUri="/Resources/Icons/appbar.add.png"
                Text="{Binding Path=MainResources.Add, Source={ StaticResource LocalizedStrings}}"/>
        </cimbalino:ApplicationBarBehavior>
    </interactivity:Interaction.Behaviors>
</Grid>



<phone:PhoneApplicationPage.ApplicationBar>
    <shell:ApplicationBar 
        Opacity="0.99"
        BackgroundColor="{StaticResource OurBestColor}"
        ForegroundColor="Black">
    </shell:ApplicationBar>
</phone:PhoneApplicationPage.ApplicationBar>
0

There are 0 answers