32 references to GetNextBehavior
System.Windows.Forms.Design (32)
System\Windows\Forms\Design\Behavior\Behavior.cs (32)
53if (_callParentBehavior && GetNextBehavior is not null) 55return GetNextBehavior.DisableAllCommands; 72if (_callParentBehavior && GetNextBehavior is not null) 74return GetNextBehavior.FindCommand(commandId); 110if (_callParentBehavior && GetNextBehavior is not null) 112GetNextBehavior.OnLoseCapture(g, e); 128if (_callParentBehavior && GetNextBehavior is not null) 130return GetNextBehavior.OnMouseDoubleClick(g, button, mouseLoc); 150if (_callParentBehavior && GetNextBehavior is not null) 152return GetNextBehavior.OnMouseDown(g, button, mouseLoc); 170if (_callParentBehavior && GetNextBehavior is not null) 172return GetNextBehavior.OnMouseEnter(g); 191if (_callParentBehavior && GetNextBehavior is not null) 193return GetNextBehavior.OnMouseHover(g, mouseLoc); 210if (_callParentBehavior && GetNextBehavior is not null) 212return GetNextBehavior.OnMouseLeave(g); 231if (_callParentBehavior && GetNextBehavior is not null) 233return GetNextBehavior.OnMouseMove(g, button, mouseLoc); 254if (_callParentBehavior && GetNextBehavior is not null) 256return GetNextBehavior.OnMouseUp(g, button); 275if (_callParentBehavior && GetNextBehavior is not null) 277GetNextBehavior.OnDragDrop(g, e); 290if (_callParentBehavior && GetNextBehavior is not null) 292GetNextBehavior.OnDragEnter(g, e); 305if (_callParentBehavior && GetNextBehavior is not null) 307GetNextBehavior.OnDragLeave(g, e); 320if (_callParentBehavior && GetNextBehavior is not null) 322GetNextBehavior.OnDragOver(g, e); 339if (_callParentBehavior && GetNextBehavior is not null) 341GetNextBehavior.OnGiveFeedback(g, e); 354if (_callParentBehavior && GetNextBehavior is not null) 356GetNextBehavior.OnQueryContinueDrag(g, e);