Hello
I'm showing an icon for every item in my RadGridView. For this, I create a GridViewImageColumn the following way:
GridViewImageColumn imgCol = new GridViewImageColumn(); |
imgCol.ImageStretch = System.Windows.Media.Stretch.None; |
imgCol.ImageWidth = 16; |
imgCol.ImageHeight = 16; |
imgCol.DataMemberBinding = binding; |
The icon is 16x16px and it's set to not stretched - still it's blurry. Now I know that this probably is not a Telerik problem because this also happens in other WPF situations. But I was trying to find something like the "SnapPixelsToDevice" or "RenderOptions.SetBitmapScalingMode" property/method.
Is there any way I can make the images look better? The Telerik-TreeView seems to work perfectly without setting any property and it uses the same images.
Thanks