vote up 1 vote down star

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.

flag

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

2 Answers

vote up 1 vote down

Could it have something to do with pixel snapping?

link|flag
Unfortunately that is not it, but it sounded likely. Good background though, I was not aware of pixel snapping. – Ryan ONeill Nov 18 '08 at 17:29
vote up 0 vote down

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|flag
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 ONeill Nov 21 '08 at 10:04

Your Answer

Get an OpenID
or

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