My images are blurry! Why isn't WPF's SnapsToDevicePixels working?
.net, image, wpf, xaml
Solution
You may want to consider trying a new property available now in WPF4. Leave the `RenderOptions.BitmapScalingMode` to HighQuality or just don't declare it.
NearestNeighbor worked for me except it led to jaggy bitmaps when zooming in on the application. It also didn't seem to fix any glitches where icons were sizing in weird ways.
On your root element (i.e. your main window) add this property: `UseLayoutRounding="True"`.
A property previously only available in Silverlight has now fixed all Bitmap sizing woes. :)
Problem
I'm using some Images in my WPF applcation. XAML: ``` <Image Name="ImageOrderedList" Source="images/OrderedList.png" ToolTip="Ordered List" Margin="0,0,5,5" Width="20" Height="20" SnapsToDevicePixels="True" MouseUp="Image_MouseUp" MouseEnter="Image_MouseEnter" MouseLeave="Image_MouseLeave" /> ``` But, they appear fuzzy. Why doesn't that `SnapsToDevicePixels="True"` line prevent this problem?