29 instantiations of MergablePropertyAttribute
PresentationCore (1)
System\Windows\Media\Animation\Timeline.cs (1)
505[MergableProperty(false)]
PresentationFramework (2)
System\Windows\FrameworkContentElement.cs (1)
820[MergableProperty(false)]
System\Windows\FrameworkElement.cs (1)
3208[MergableProperty(false)]
System.ComponentModel.Primitives (2)
System\ComponentModel\MergablePropertyAttribute.cs (2)
20public static readonly MergablePropertyAttribute Yes = new MergablePropertyAttribute(true); 27public static readonly MergablePropertyAttribute No = new MergablePropertyAttribute(false);
System.ComponentModel.TypeConverter (1)
System\ComponentModel\IListSource.cs (1)
8[MergableProperty(false)]
System.Windows.Forms (22)
System\Windows\Forms\ComponentModel\COM2Interop\COM2TypeInfoProcessor.cs (1)
585info.Attributes.Add(new MergablePropertyAttribute(false));
System\Windows\Forms\Control.cs (1)
3028[MergableProperty(false)]
System\Windows\Forms\Controls\ComboBox\ComboBox.cs (1)
618[MergableProperty(false)]
System\Windows\Forms\Controls\DataGridView\DataGridView.cs (1)
1684[MergableProperty(false)]
System\Windows\Forms\Controls\ImageList\ImageList.cs (1)
135[MergableProperty(false)]
System\Windows\Forms\Controls\ListBoxes\CheckedListBox.cs (1)
166[MergableProperty(false)]
System\Windows\Forms\Controls\ListBoxes\ListBox.cs (1)
622[MergableProperty(false)]
System\Windows\Forms\Controls\ListControl\ListControl.cs (1)
209[MergableProperty(false)]
System\Windows\Forms\Controls\ListView\ListView.cs (3)
614[MergableProperty(false)] 968[MergableProperty(false)] 1137[MergableProperty(false)]
System\Windows\Forms\Controls\Menus\MenuStrip.cs (1)
129[MergableProperty(false)]
System\Windows\Forms\Controls\TabControl\TabControl.cs (1)
810[MergableProperty(false)]
System\Windows\Forms\Controls\TextBox\MaskedTextBox.cs (1)
629[MergableProperty(false)]
System\Windows\Forms\Controls\TextBox\TextBoxBase.cs (1)
562[MergableProperty(false)]
System\Windows\Forms\Controls\ToolStrips\ToolStrip.cs (1)
1041[MergableProperty(false)]
System\Windows\Forms\Controls\TreeView\TreeView.cs (1)
886[MergableProperty(false)]
System\Windows\Forms\Controls\Unsupported\ContextMenu\Menu.cs (1)
52[MergableProperty(false)]
System\Windows\Forms\Controls\Unsupported\StatusBar\StatusBar.cs (1)
95[MergableProperty(false)]
System\Windows\Forms\Controls\Unsupported\ToolBar\ToolBar.cs (1)
85[MergableProperty(false)]
System\Windows\Forms\Panels\TableLayoutPanel\TableLayoutPanel.cs (2)
154[MergableProperty(false)] 163[MergableProperty(false)]
System.Windows.Forms.Design (1)
System\Windows\Forms\Design\DesignerExtenders.NameExtenderProvider.cs (1)
73[MergableProperty(false)]
13 references to MergablePropertyAttribute
netstandard (1)
netstandard.cs (1)
381[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.ComponentModel.MergablePropertyAttribute))]
System (1)
src\libraries\shims\System\ref\System.cs (1)
367[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.ComponentModel.MergablePropertyAttribute))]
System.ComponentModel.Primitives (6)
System\ComponentModel\MergablePropertyAttribute.cs (6)
20public static readonly MergablePropertyAttribute Yes = new MergablePropertyAttribute(true); 27public static readonly MergablePropertyAttribute No = new MergablePropertyAttribute(false); 30/// Specifies the default value, which is <see cref='System.ComponentModel.MergablePropertyAttribute.Yes'/>, 35public static readonly MergablePropertyAttribute Default = Yes; 38/// Initializes a new instance of the <see cref='System.ComponentModel.MergablePropertyAttribute'/> 53obj is MergablePropertyAttribute other && other.AllowMerge == AllowMerge;
System.Windows.Forms (5)
System\Windows\Forms\Controls\PropertyGrid\PropertyGridInternal\MultiSelectRootGridEntry.PropertyMerger.cs (3)
144bool match = pivotProperty.GetAttribute<MergablePropertyAttribute>()?.IsDefaultAttribute() ?? false; 160if (property.GetAttribute<MergablePropertyAttribute>()?.IsDefaultAttribute() ?? false) 181match = property.GetAttribute<MergablePropertyAttribute>()?.IsDefaultAttribute() ?? false;
System\Windows\Forms\Controls\PropertyGrid\PropertyGridInternal\PropertyDescriptorGridEntry.cs (1)
49=> PropertyDescriptor.GetAttribute<MergablePropertyAttribute>()?.IsDefaultAttribute() ?? true;
System\Windows\Forms\Design\EventsTab.cs (1)
156matchingPropertyEvents.Add(TypeDescriptor.CreateProperty(property.ComponentType, property, MergablePropertyAttribute.No));