1 type derived from PropertyValueUIItem
System.Windows.Forms.Design (1)
System\Windows\Forms\Design\DesignBindingValueUIHandler.LocalUIItem.cs (1)
11private class LocalUIItem : PropertyValueUIItem
3 instantiations of PropertyValueUIItem
System.Windows.Forms.Tests (3)
System\Drawing\Design\PropertyValueUIItemTests.cs (3)
22PropertyValueUIItem item = new(uiItemImage, handler, tooltip); 31Assert.Throws<ArgumentNullException>("uiItemImage", () => new PropertyValueUIItem(null, Dummy_PropertyValueUIItemInvokeHandler, "tooltip")); 38Assert.Throws<ArgumentNullException>("handler", () => new PropertyValueUIItem(uiItemImage, null, "tooltip"));
13 references to PropertyValueUIItem
System.Windows.Forms (10)
System\Drawing\Design\IPropertyValueUIService.cs (5)
16/// of <see cref="PropertyValueUIItem"/> is modified. 27/// Gets the <see cref="PropertyValueUIItem" /> objects that match the specified context 30/// <returns>An array of <see cref="PropertyValueUIItem" /> objects that match the specified parameters.</returns> 37PropertyValueUIItem[] GetPropertyUIValueItems(ITypeDescriptorContext context, PropertyDescriptor propDesc); 41/// global list of <see cref="PropertyValueUIItem"/> has been modified.
System\Drawing\Design\PropertyValueUIHandler.cs (1)
17/// An <see cref="ArrayList" /> of <see cref="PropertyValueUIItem" /> objects containing the UI items
System\Drawing\Design\PropertyValueUIItemInvokeHandler.cs (3)
10/// <see cref="PropertyValueUIItem"/> is double-clicked. 17/// The <see cref="PropertyValueUIItem" /> associated with the icon that was double-clicked. 19public delegate void PropertyValueUIItemInvokeHandler(ITypeDescriptorContext context, PropertyDescriptor descriptor, PropertyValueUIItem invokedItem);
System\Windows\Forms\Controls\PropertyGrid\PropertyGridInternal\PropertyDescriptorGridEntry.cs (1)
20private PropertyValueUIItem[]? _propertyValueUIItems;
System.Windows.Forms.Design (1)
System\Windows\Forms\Design\DesignBindingValueUIHandler.cs (1)
48private static void OnPropertyValueUIItemInvoke(ITypeDescriptorContext context, PropertyDescriptor descriptor, PropertyValueUIItem invokedItem)
System.Windows.Forms.Tests (2)
System\Drawing\Design\PropertyValueUIItemTests.cs (2)
22PropertyValueUIItem item = new(uiItemImage, handler, tooltip); 41private static void Dummy_PropertyValueUIItemInvokeHandler(ITypeDescriptorContext context, PropertyDescriptor propDesc, PropertyValueUIItem invokedItem) { }