5 writes to eventBindings
System.Windows.Forms (5)
winforms\Managed\System\WinForms\PropertyGridInternal\MultiPropertyDescriptorGridEntry.cs (1)
287eventBindings = (IEventBindingService)GetService(typeof(IEventBindingService));
winforms\Managed\System\WinForms\PropertyGridInternal\PropertyDescriptorGridEntry.cs (4)
565eventBindings = (IEventBindingService)GetService(typeof(IEventBindingService)); 710eventBindings = (IEventBindingService)GetService(typeof(IEventBindingService)); 910eventBindings = (IEventBindingService)GetService(typeof(IEventBindingService)); 935eventBindings = (IEventBindingService)site.GetService(typeof(IEventBindingService));
19 references to eventBindings
System.Windows.Forms (19)
winforms\Managed\System\WinForms\PropertyGridInternal\MultiPropertyDescriptorGridEntry.cs (3)
286if (eventBindings == null) { 290if (eventBindings != null) { 291EventDescriptor descriptor = eventBindings.GetEvent(mpd[0]);
winforms\Managed\System\WinForms\PropertyGridInternal\PropertyDescriptorGridEntry.cs (16)
564if (eventBindings == null) { 567if (eventBindings != null) { 568EventDescriptor descriptor = eventBindings.GetEvent(propertyInfo); 708if (eventBindings == null) 712if (eventBindings != null) 714eventDesc = eventBindings.GetEvent(propertyInfo); 909if (eventBindings == null) { 912if (eventBindings != null) { 913eventdesc = eventBindings.GetEvent(propertyInfo); 932if (eventBindings == null) { 939if (newHandler == null && eventBindings != null) { 940newHandler = eventBindings.CreateUniqueMethodName(component, eventdesc); 949if (eventBindings != null) { 951foreach (string methodName in eventBindings.GetCompatibleMethods(eventdesc)) { 979if (alwaysNavigate && eventBindings != null) { 980targetBindingService = eventBindings;