Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

ToolStripStatusLabel DoubleClick does not work?

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.

like image 422
serhio Avatar asked Mar 04 '10 16:03

serhio


1 Answers

That class has a DoubleClickEnabled property which is, by default, false. You'll need to set it to true in the properties window.

like image 137
Jacob G Avatar answered Nov 02 '22 04:11

Jacob G