2013-05-27 3 views
1

컨트롤에 이미지가 포함되어 있고이 컨트롤을 처음 클릭 할 때이 표시되면 Callityo의 기울기를 적용한 다음 을 기울임을 적용 할 때 내 Windows 8 C# 응용 프로그램에서 이미지가 깜박입니다. 그것은 특히 사용자 정의 "이미지 버튼"과 함께 사용할 때 상당히 혼란 스럽습니다.이미지가있는 컨트롤에 대해 Callisto의 기울기를 사용할 때 이미지 깜박임을 제거하는 방법?

이미지 깜박임없이이 컨트롤을 기울이기 가능하게 만드는 방법이 있습니까?

이 문제를 재현하려면 새로운 Windows 8 C# SplitApp 프로젝트에 추가하고 Callisto NuGet 패키지를 추가하고 기본 GridView 및 SpliView에 주석을 추가하십시오. <Image>CacheMode="BitmapCache"을 추가

<StackPanel Orientation="Horizontal" effects:Tilt.IsTiltEnabled="True" 
    Background="BlueViolet" Width="300" Height="100" > 
    <Image Source="Assets/SmallLogo.png"/> 
    <TextBlock Text="tap and watch the image blink" FontSize="20" /> 
</StackPanel> 
<StackPanel Orientation="Horizontal" effects:Tilt.IsTiltEnabled="True" 
    Background="Crimson" Width="300" Height="100" Grid.Row="1" > 
    <Image Source="Assets/SmallLogo.png"/> 
    <TextBlock Text="tap and watch the image blink" FontSize="20"/> 
</StackPanel> 

답변