2 overrides of OnMouseDoubleClick
System.Windows.Forms.Design (2)
System\Windows\Forms\Design\Behavior\DesignerActionBehavior.cs (1)
91public override bool OnMouseDoubleClick(Glyph? g, MouseButtons button, Point mouseLoc)
System\Windows\Forms\Design\ToolStripItemBehavior.cs (1)
207public 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)
130return GetNextBehavior.OnMouseDoubleClick(g, button, mouseLoc); 134return 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)
2691return _hitTestedGlyph.Behavior.OnMouseDoubleClick(_hitTestedGlyph, e.Button, new Point(e.X, e.Y));