2 overrides of OnMouseDoubleClick
System.Windows.Forms.Design (2)
System\Windows\Forms\Design\Behavior\DesignerActionBehavior.cs (1)
91
public override bool
OnMouseDoubleClick
(Glyph? g, MouseButtons button, Point mouseLoc)
System\Windows\Forms\Design\ToolStripItemBehavior.cs (1)
207
public override bool
OnMouseDoubleClick
(Glyph g, MouseButtons button, Point mouseLoc)
4 references to OnMouseDoubleClick
System.Windows.Forms.Design (4)
System\Windows\Forms\Design\Behavior\Behavior.cs (2)
130
return GetNextBehavior.
OnMouseDoubleClick
(g, button, mouseLoc);
134
return behavior.
OnMouseDoubleClick
(g, button, mouseLoc);
System\Windows\Forms\Design\Behavior\BehaviorService.cs (1)
670
=> GetAppropriateBehavior(_hitTestedGlyph)?.
OnMouseDoubleClick
(_hitTestedGlyph, button, mouseLoc) ?? false;
System\Windows\Forms\Design\ComponentTray.cs (1)
2691
return _hitTestedGlyph.Behavior.
OnMouseDoubleClick
(_hitTestedGlyph, e.Button, new Point(e.X, e.Y));