如何控制拉绳的方向?

发布于 2024-10-24 17:02:55 字数 461 浏览 1 评论 0原文

我想绘制一个字符串作为轴标签。当我用以下代码绘制字符串时,我可以“从左侧”读取它。文本的基线位于左侧​​。

StringFormat format = CustomGraphics.StringFormat(ContentAlignment.MiddleCenter);
format.FormatFlags |= StringFormatFlags.DirectionVertical;
e.Graphics.DrawString(this.yAxis.Title.Text, this.yAxis.Title.Font,
                      textBrush, e.Bounds, format);
format.FormatFlags &= ~StringFormatFlags.DirectionVertical;

我想垂直绘制,但将方向旋转 180 度。我怎样才能控制这个?我应该使用其他方法吗?

I want to draw a string as an axis label. When I draw the string with following code, I can read it "from the left". The base line of the text is at the left side.

StringFormat format = CustomGraphics.StringFormat(ContentAlignment.MiddleCenter);
format.FormatFlags |= StringFormatFlags.DirectionVertical;
e.Graphics.DrawString(this.yAxis.Title.Text, this.yAxis.Title.Font,
                      textBrush, e.Bounds, format);
format.FormatFlags &= ~StringFormatFlags.DirectionVertical;

I want to draw vertical but turn the orientation by 180 degrees. How can I control this? Is there another method that I should use?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

傻比既视感 2024-10-31 17:02:55

使用 Graphics.RotateTransform() 使字符串按照您想要的方式旋转。您需要 TranslateTransform() 和 MeasureText() 才能获得正确的起点。

Use Graphics.RotateTransform() to get the string rotated the way you want it. You'll need TranslateTransform() and MeasureText() to get the start-point right.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文