File size: 4,495 Bytes
b1b3bae |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 |
Imports System.Timers
Public Class ObjectEditorForm
Inherits WeifenLuo.WinFormsUI.Docking.DockContent
Dim lastX, lastY As Integer
Public WithEvents ToolTipValues As New ToolTip
Private components As System.ComponentModel.IContainer
Private _currentToolTipControl As Control = Nothing
Public InspReportBar As InspectorReportBar
Private WithEvents DisplayTimer As New Timers.Timer
Private DisplayTime As DateTime
Public Overridable ReadOnly Property Modular As Boolean = False
Public Function GetAllChildren(control As Control) As IEnumerable(Of Control)
Dim controls = control.Controls.Cast(Of Control)
Return controls.SelectMany(Function(ctrl) GetAllChildren(ctrl)).Concat(controls)
End Function
Private Sub InitializeComponent()
DisplayTimer.Interval = 100
Me.SuspendLayout()
'
'ObjectEditorForm
'
Me.ClientSize = New System.Drawing.Size(284, 262)
Me.Name = "ObjectEditorForm"
Me.ResumeLayout(False)
End Sub
Protected Sub Editor_MouseMove(sender As Object, e As MouseEventArgs) Handles Me.MouseMove
If ((e.X <> Me.lastX) OrElse (e.Y <> Me.lastY)) Then
Me.lastX = e.X
Me.lastY = e.Y
Dim mouseloc, controlLoc, relativeloc As Drawing.Point
Dim eventloc As Drawing.Point = e.Location
If TypeOf sender Is GroupBox Then eventloc = e.Location + DirectCast(sender, GroupBox).Location
Dim control As Control
If TypeOf sender Is TabPage Then
control = sender.GetChildAtPoint(eventloc)
If control Is Nothing Then control = sender
Else
control = GetChildAtPoint(eventloc)
End If
If Not control Is Nothing Then
Dim lastCrp As Control = control
While Not control Is Nothing
lastCrp = control
controlLoc = control.Parent?.PointToScreen(control.Location)
mouseloc = PointToScreen(eventloc)
relativeloc = New Drawing.Point(mouseloc.X - controlLoc.X, mouseloc.Y - controlLoc.Y)
control = control.GetChildAtPoint(relativeloc)
End While
If (_currentToolTipControl IsNot Nothing AndAlso _currentToolTipControl IsNot lastCrp) Then
ToolTipValues.Hide(_currentToolTipControl)
End If
If Not lastCrp Is Nothing AndAlso TypeOf lastCrp Is TextBox Then
Dim toolTipString As String = ToolTipValues.GetToolTip(lastCrp)
If toolTipString <> "" Then
ToolTipValues.Hide(lastCrp)
ToolTipValues.Show(toolTipString, lastCrp, lastCrp.Width, lastCrp.Height)
_currentToolTipControl = lastCrp
End If
Else
_currentToolTipControl = Nothing
End If
End If
End If
End Sub
Private Sub ToolTipValues_Popup(sender As Object, e As PopupEventArgs) Handles ToolTipValues.Popup
DisplayTime = Date.Now
DisplayTimer.Start()
End Sub
Private Sub DisplayTimer_Elapsed(sender As Object, e As ElapsedEventArgs) Handles DisplayTimer.Elapsed
If (e.SignalTime - DisplayTime).TotalSeconds >= 10 Then
Try
If _currentToolTipControl IsNot Nothing Then
_currentToolTipControl.UIThreadInvoke(Sub()
Try
If Not _currentToolTipControl.IsDisposed Then
ToolTipValues.Hide(_currentToolTipControl)
End If
Catch ex As Exception
End Try
End Sub)
End If
Catch ex As Exception
Finally
DisplayTimer.Stop()
End Try
End If
End Sub
Private Sub ObjectEditorForm_Load(sender As Object, e As EventArgs) Handles Me.Load
Width = 500
Me.AutoScaleMode = AutoScaleMode.Dpi
End Sub
End Class
|