WPF render strings in window

I have a wpf application that constantly creates odd lines (gray) across the screen. When the mouse moves, they appear and disappear. Sorry for the bad description, but it's hard to describe. I wonder if there is anything I can do about it.

screenshot

I tried several rendering options, etc.

 <dxg:GridControl SnapsToDevicePixels="True"

      

and

RenderOptions.ClearTypeHint="Enabled"
                RenderOptions.BitmapScalingMode="NearestNeighbor"
                RenderOptions.EdgeMode="Aliased" 

      

Any help would be greatly appreciated. Thanks Scott

+3


source to share


1 answer


We have similar problems with large black vertical stripes. Allowed only by switching to render-only software:



System.Windows.Media.RenderOptions.ProcessRenderMode = RenderMode.SoftwareOnly;

      

+4


source







All Articles