up vote 1 down vote favorite
share [g+] share [fb]

I have a WPF user control I created that is used to show the state of tasks in my UI. I get the odd report back that the control sometimes has a nasty looking border to the left and I cannot reproduce it.

The control looks like this (when working) (grey tick=not run, green=OK,red cross=fail,hourglass=running);

alt text

It looks like this when the problem occurs;

alt text

It may have something to do with the layering of those icons, when the state changes the others are made invisible and the relevant icon is made visible. The four icons are all stacked on top of each other.

It could also be the background in theory, which I'll look at next. Problem is reported on both flat panel and CRT displays.

Any guidance greatly appreciated.

Update: 1) SnapsToDevicePixels does not affect the issue. 2) Grid is not used, only a canvas.

link|improve this question

It's the pixel snapping as mentioned below by Cameron. – Timothy Khouri Nov 18 '08 at 12:41
feedback

3 Answers

Could it have something to do with pixel snapping?

link|improve this answer
Unfortunately that is not it, but it sounded likely. Good background though, I was not aware of pixel snapping. – Ryan O'Neill Nov 18 '08 at 17:29
feedback

Are they in a grid? It could be related to http://stackoverflow.com/questions/267364/wpf-eliminate-transparency-between-grid-cells#267954 which we never really resolved.

link|improve this answer
No grid in use, just a canvas. But they seem linked somehow. I'll have to make it simpler I think with blocks of colour and see if I can get a sample up to reproduce it. Could be linked to DPI somehow though as only happens on certain systems (not mine obviously). – Ryan O'Neill Nov 21 '08 at 10:04
feedback

You could ask one of your tech-savvy users to run Snoop while the problem is showing, then:

  1. Click on the binoculars
  2. Put the mouse over the artifact (vertical bar) and press Shift-Ctrl
  3. Look in the Snoop window and tell you which item is hilighted

This will tell you exactly what control is producing the color you are seeing in the artifact, which may be a big clue in fixing it.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.