1

I'm experimenting problems with text rendering in WPF (third party applications and mine too). Labels and other text don't display correctly, look a little blurred and are rendered with some random colored pixels around.

I'm working on a low end crap machine (SiS Mirage 3 graphics) with Vista SP1, .NET 3.5 SP1 and graphics driver updated.

Another poor souls having similar problems were answered to try disabling hardware acceleration for WPF using Microsoft instructions to change the registry key:

HKEY_CURRENT_USER\SOFTWARE\Microsoft\Avalon.Graphics\DisableHWAcceleration

The ultimate issue to me is: I can't find "Avalon.Graphics" in the registry at all. It's not there. Someone have a clue?

Thanks.

4

2 に答える 2

3

作成してみましたか?特にMSDNで言及されているので、正しいと思います(または、正しいことを願っています:-))

于 2009-10-02T13:48:11.447 に答える
2

SnapToPixels を設定してみましたか? これは、私たちの多くの見解に驚異をもたらしました。私はあなたが話していることを正確に知っています。

試す:

<Window ..
     SnapToPixels="True">
...
</Window>

そして、それが違いを生むかどうかを確認してください。

TextEffectsを適用するときに少しぼやけていることに気付いたので、それを行っている場合は、それらをオフまたはオフにして、何が得られるかを確認することをお勧めします。

于 2009-10-02T15:58:11.000 に答える