Does ToolStripStatusLabel DoubleClick ever work?
Private Sub myToolStripStatusLabel_DoubleClick(ByVal sender As System.Object, _
ByVal e As System.EventArgs) Handles myToolStripStatusLabel.DoubleClick
MessageBox.Show("WORKING!")
End Sub
Only Click works. DoubleClick does not even if Click is present or not.
That class has a
DoubleClickEnabledproperty which is, by default,false. You’ll need to set it totruein the properties window.