40 references to IEventBindingService
System.Windows.Forms (22)
winforms\Managed\System\WinForms\Design\EventsTab.cs (10)
77IEventBindingService eventPropertySvc = GetEventPropertyService(obj, null); 94private IEventBindingService GetEventPropertyService(object obj, ITypeDescriptorContext context) { 96IEventBindingService eventPropertySvc = null; 108eventPropertySvc = (IEventBindingService)currentHost.GetService(typeof(IEventBindingService)); 115eventPropertySvc = (IEventBindingService)site.GetService(typeof(IEventBindingService)); 120eventPropertySvc = (IEventBindingService)context.GetService(typeof(IEventBindingService)); 140IEventBindingService eventPropertySvc = GetEventPropertyService(component, context);
winforms\Managed\System\WinForms\PropertyGridInternal\MultiPropertyDescriptorGridEntry.cs (2)
287eventBindings = (IEventBindingService)GetService(typeof(IEventBindingService));
winforms\Managed\System\WinForms\PropertyGridInternal\PropertyDescriptorGridEntry.cs (10)
36protected IEventBindingService eventBindings = null; 55static IEventBindingService targetBindingService; 565eventBindings = (IEventBindingService)GetService(typeof(IEventBindingService)); 710eventBindings = (IEventBindingService)GetService(typeof(IEventBindingService)); 910eventBindings = (IEventBindingService)GetService(typeof(IEventBindingService)); 935eventBindings = (IEventBindingService)site.GetService(typeof(IEventBindingService));
System.Workflow.ComponentModel (18)
AuthoringOM\Design\ActivityDesigner.cs (6)
1213IEventBindingService eventBindingService = (IEventBindingService)GetService(typeof(IEventBindingService)); 2096IEventBindingService eventBindingService = GetService(typeof(IEventBindingService)) as IEventBindingService;
AuthoringOM\Design\ComponentSerializationService.cs (3)
334IEventBindingService eventBindingService = this.serviceProvider.GetService(typeof(IEventBindingService)) as IEventBindingService;
AuthoringOM\Design\PropertyDescriptors.cs (6)
220IEventBindingService eventBindingService = serviceProvider.GetService(typeof(IEventBindingService)) as IEventBindingService; 357IEventBindingService eventBindingService = ServiceProvider.GetService(typeof(IEventBindingService)) as IEventBindingService;
AuthoringOM\Serializer\DependencyObjectCodeDomSerializer.cs (3)
140IEventBindingService eventBindingService = manager.GetService(typeof(IEventBindingService)) as IEventBindingService;