[トピック内 5 記事 (1 - 5 表示)] << 0 >>
引数の並びからして、DrawString()はFormのGraphicsクラスのメンバかな? Graphics.RotateTransform() は解除しない限り、スタックされます。 (例) 以下の2行を実行後、DrawString()すれば、180度の回転 gra.RotateTransform(90); gra.RotateTransform(90); 解除するには、 Graphics.ResetTransform() を呼び出してください。 結論です。 gra.RotateTransform(90); gra.DrawString(); // 引数省略 gra.ResetTransform(); gra.DrawLine(); // 引数省略 のように呼び出せば、DrawString()で書いた文字だけが回転するはずです。
管理者用
- Child Tree -