作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
这是一个隔离我的问题的示例代码。我试图从右到左绘制一个字符串。如果我的字符串以数字开头,然后有一个带字母的逗号,它会重新排列我的字符串。很好..打开一个新项目并添加此表单以供您自己查看..谢谢
Public Class Form1
Private Sub Form1_Paint(sender As Object, e As PaintEventArgs) Handles Me.Paint
Dim myFont As Font = New Font("Zipper", 24, FontStyle.Bold)
Dim myBrush As Brush = Brushes.Black
Dim line1 As String = "220516,5130.02,N,00046.34,W,213.8,T,218.0,M,0004.6,N"
Dim format As StringFormat = New StringFormat(StringFormatFlags.DirectionRightToLeft)
Me.Width = 1400
e.Graphics.DrawString(line1, myFont, myBrush, 1300, 0, format)
e.Graphics.DrawString(line1, myFont, myBrush, 100, 50)
End Sub
End Class
最佳答案
尝试使用 Alignment 属性:
Dim format As New StringFormat
format.Alignment = StringAlignment.Far
Using myFont As Font = New Font("Zipper", 24, FontStyle.Bold)
Dim myBrush As Brush = Brushes.Black
Dim line1 As String = "220516,5130.02,N,00046.34,W,213.8,T,218.0,M,0004.6,N"
Dim format As New StringFormat
format.Alignment = StringAlignment.Far
Me.Width = 1400
e.Graphics.DrawString(line1, myFont, myBrush, 1300, 0, format)
e.Graphics.DrawString(line1, myFont, myBrush, 100, 50)
End Using
关于VB.net Graphics.DrawString 方向从右到左混淆了我的字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17837257/
目前我正在使用 [self presentModalViewController :newVC animated:YES] 。我想从左/右/顶部/底部呈现带有推送效果的 newViewcontroll
我正在尝试实现“带有上一个和下一个的部分幻灯片”。这些部分的标记如下: Section 1 Section 2 Section 3 Prev Next 除具有 acti
我的问题与此处提出的问题几乎相同:question 不同的是,我想从右边切换第 2 位和第 4 位数字,而不是像另一个问题中那样从左边切换。所以在我的例子中最右边的数字是 1。示例:283926.67
我是一名优秀的程序员,十分优秀!