Flickering problem
-
Thursday, April 12, 2012 10:46 AM
Hi,
I have a strong flickering problem with my App. That's even worse when you go with the mouse over the Grids or ListBoxes or click it. How can I fix this problem?
Thanks
All Replies
-
Friday, April 13, 2012 11:26 PMModerator
Can you explain what you mean more clearly?
What sort of flickering? What does the Xaml look like? Does it occur only with your app or with others as well? Can you reproduce this in a minimal app?
--Rob
-
Monday, April 16, 2012 9:12 AM
Hi Rob,
thanks for reply. I could reproduce this in a minimal app. Can I send you this?
Thanks
-
Monday, April 16, 2012 2:30 PM
Same issue.
I get this problem. Create a blank app, with a ListBox in the default grid, so it fills the whole screen. Put some random ListBoxItems in it. Start it and move the mouse cursor around randomly. I get heavy flickering.
My setup is a Sandy Bridge i7-2600, ATI HD6950 in a dual screen setup (2x 24" @ 1920x1200 each). Hyper-V is installed.
-
Tuesday, April 17, 2012 2:55 AMModerator
Hi Tom,
I'm not seeing any flicker with the following Xaml:
<Grid Background="{StaticResource ApplicationPageBackgroundBrush}"> <ListBox x:Name="listBox" ItemsSource="{Binding}" FontSize="36" > </ListBox> </Grid>And code behind:
protected override void OnNavigatedTo(NavigationEventArgs e) { ObservableCollection<string> items = new ObservableCollection<string>(); for (int i = 0; i < 100; i++) { items.Add("Item " + i); } listBox.DataContext = items; }Does that reproduce for you? If so, there may be a driver issue here. I'll check it out on a couple of other machines as well. If not, let me know what changes you need to make to see the problem.
Lowterm, can you also let me know if this matches your repro? If not, can you make your minimal app available on SkyDrive?
--Rob
-
Tuesday, April 17, 2012 9:27 AM
Hello Rob,
the file is up and available on SkyDrive. How can I send it to you?
Thanks


