1 implementation of GetEventProperty
System.Windows.Forms.Design (1)
System\ComponentModel\Design\EventBindingService.cs (1)
197PropertyDescriptor IEventBindingService.GetEventProperty(EventDescriptor e)
39 references to GetEventProperty
System.Windows.Forms (1)
System\Windows\Forms\Design\EventsTab.cs (1)
43? eventPropertyService.GetEventProperty(defaultEvent)
System.Windows.Forms.Design (6)
System\ComponentModel\Design\ComponentDesigner.cs (1)
279PropertyDescriptor? defaultPropEvent = ebs.GetEventProperty(defaultEvent);
System\ComponentModel\Design\EventBindingService.cs (1)
233PropertyDescriptor prop = ((IEventBindingService)this).GetEventProperty(e);
System\ComponentModel\Design\Serialization\CodeDomSerializerBase.cs (2)
501PropertyDescriptor prop = evtSvc.GetEventProperty(evt); 1236PropertyDescriptor prop = evtSvc.GetEventProperty(evt);
System\ComponentModel\Design\Serialization\EventMemberCodeDomSerializer.cs (1)
42PropertyDescriptor prop = eventBindings.GetEventProperty(eventToSerialize);
System\Windows\Forms\Design\ComponentTray.cs (1)
2476defaultPropEvent = eps.GetEventProperty(defaultEvent);
System.Windows.Forms.Design.Tests (30)
System\ComponentModel\Design\ComponentDesignerTests.cs (30)
778.Setup(s => s.GetEventProperty(It.IsAny<EventDescriptor>())) 843mockEventBindingService.Verify(s => s.GetEventProperty(It.IsAny<EventDescriptor>()), Times.Exactly(3)); 864mockEventBindingService.Verify(s => s.GetEventProperty(It.IsAny<EventDescriptor>()), Times.Exactly(6)); 891.Setup(s => s.GetEventProperty(It.IsAny<EventDescriptor>())) 958mockEventBindingService.Verify(s => s.GetEventProperty(It.IsAny<EventDescriptor>()), Times.Once()); 971mockEventBindingService.Verify(s => s.GetEventProperty(It.IsAny<EventDescriptor>()), Times.Exactly(2)); 1002.Setup(s => s.GetEventProperty(It.IsAny<EventDescriptor>())) 1071mockEventBindingService.Verify(s => s.GetEventProperty(It.IsAny<EventDescriptor>()), Times.Exactly(3)); 1095mockEventBindingService.Verify(s => s.GetEventProperty(It.IsAny<EventDescriptor>()), Times.Exactly(6)); 1118.Setup(s => s.GetEventProperty(It.IsAny<EventDescriptor>())) 1177mockEventBindingService.Verify(s => s.GetEventProperty(It.IsAny<EventDescriptor>()), Times.Once()); 1188mockEventBindingService.Verify(s => s.GetEventProperty(It.IsAny<EventDescriptor>()), Times.Exactly(2)); 1211.Setup(s => s.GetEventProperty(It.IsAny<EventDescriptor>())) 1270mockEventBindingService.Verify(s => s.GetEventProperty(It.IsAny<EventDescriptor>()), Times.Once()); 1281mockEventBindingService.Verify(s => s.GetEventProperty(It.IsAny<EventDescriptor>()), Times.Exactly(2)); 1302.Setup(s => s.GetEventProperty(It.IsAny<EventDescriptor>())) 1360mockEventBindingService.Verify(s => s.GetEventProperty(It.IsAny<EventDescriptor>()), Times.Once()); 1371mockEventBindingService.Verify(s => s.GetEventProperty(It.IsAny<EventDescriptor>()), Times.Exactly(2)); 1392.Setup(s => s.GetEventProperty(It.IsAny<EventDescriptor>())) 1455mockEventBindingService.Verify(s => s.GetEventProperty(It.IsAny<EventDescriptor>()), Times.Once()); 1468mockEventBindingService.Verify(s => s.GetEventProperty(It.IsAny<EventDescriptor>()), Times.Exactly(2)); 1499.Setup(s => s.GetEventProperty(It.IsAny<EventDescriptor>())) 1562mockEventBindingService.Verify(s => s.GetEventProperty(It.IsAny<EventDescriptor>()), Times.Once()); 1575mockEventBindingService.Verify(s => s.GetEventProperty(It.IsAny<EventDescriptor>()), Times.Exactly(2)); 1601.Setup(s => s.GetEventProperty(It.IsAny<EventDescriptor>())) 1659mockEventBindingService.Verify(s => s.GetEventProperty(It.IsAny<EventDescriptor>()), Times.Once()); 1669mockEventBindingService.Verify(s => s.GetEventProperty(It.IsAny<EventDescriptor>()), Times.Exactly(2)); 1882.Setup(s => s.GetEventProperty(It.IsAny<EventDescriptor>())) 1931mockEventBindingService.Verify(s => s.GetEventProperty(It.IsAny<EventDescriptor>()), Times.Once()); 1943mockEventBindingService.Verify(s => s.GetEventProperty(It.IsAny<EventDescriptor>()), Times.Exactly(2));
System.Windows.Forms.Tests (2)
System\Windows\Forms\Design\EventsTabTests.cs (2)
66.Setup(e => e.GetEventProperty(TypeDescriptor.GetDefaultEvent(typeof(ClassWithDefaultEvent)))) 102.Setup(e => e.GetEventProperty(TypeDescriptor.GetDefaultEvent(typeof(ClassWithDefaultEvent))))