Hi,
I've seen this issue at older posts, and no solution yet.
I have a RTL DataGrid with hebrew text (same problem would be in any other RTL lang.)
When I try to print it:
PrintDialog dlg = new PrintDialog();if (dlg.ShowDialog() == true) { dlg.PrintVisual(grdRegistration, "Report"); }
I get it printed out Mirrored (I can read it only if I look at it in the mirror)
On the screen I see everything fine of-course.
Any ideas why it happens, and how to fix it ?
related questions I've found on this topic:
http://connect.microsoft.com/VisualStudio/feedback/details/320720/text-with-flowdirection-righttoleft-is-mirrored-when-printing-using-printdialog-printvisual-in-wpf
http://social.msdn.microsoft.com/Forums/en/wpf/thread/3064e0c3-59ab-44fb-80fa-308df574d31f
Dani Kaplan