2017-07-31 57 views

回答

1

您將需要使用Matrix3x2.CreateRotation來旋轉文字。例如,下面的代碼將中的文本順時針旋轉90度。不要忘記在第二個參數中指定中心點

drawingSession.Transform *= Matrix3x2.CreateRotation((float)Math.PI/2, new Vector2(_dimension/2)); 
drawingSession.DrawText("Sample Text", x, y, txtColor, canvasTxtFormat); 
+1

非常感謝你的朋友,它的工作原理。 –