我需要一个带有自定义Font的工具提示。
我有以下代码,这可行...但工具提示大小不适合文本。
错误在哪里?
Public Class KeolisTooltip
Inherits ToolTip
Sub New()
MyBase.New()
Me.OwnerDraw = True
AddHandler Me.Draw, AddressOf OnDraw
End Sub
Private _Font As Font
Public Property Font() As Font
Get
Return _Font
End Get
Set(ByVal value As Font)
_Font = value
End Set
End Property
Public Sub New(ByVal Cont As System.ComponentModel.IContainer)
MyBase.New(Cont)
Me.OwnerDraw = True
AddHandler Me.Draw, AddressOf OnDraw
End Sub
Private Sub OnDraw(ByVal sender As Object, ByVal e As DrawToolTipEventArgs)
Dim newArgs As DrawToolTipEventArgs
If _Font Is Nothing Then
newArgs = e
Else
Dim newSize As Size = Size.Round(e.Graphics.MeasureString(e.ToolTipText, Me._Font))
Dim newBounds As New Rectangle(e.Bounds.Location, newSize)
newArgs = New DrawToolTipEventArgs( _
e.Graphics, _
e.AssociatedWindow, _
e.AssociatedControl, _
newBounds, _
e.ToolTipText, _
Me.BackColor, _
Me.ForeColor, _
Me._Font)
End If
newArgs.DrawBackground()
newArgs.DrawBorder()
newArgs.DrawText()
End Sub
End Class
答案 0 :(得分:2)
Size.Round
(来自MSDN页面)
通过将SizeF结构的值四舍五入为最接近的整数值,将指定的SizeF结构转换为Size结构。
(我的重点)。
因此,如果
e.Graphics.MeasureString(e.ToolTipText, Me._Font)
产生的值为23.4和42.1(比如说)然后它们将分别舍入到23和42,因此你的工具提示会略微过小。
答案 1 :(得分:0)
除OnDraw事件外,您是否可以尝试在OnResize事件上添加调整大小逻辑?我想你会得到关于那个事件的正确值。试着告诉它是否有效。