41 references to Yes
System (3)
compmod\system\componentmodel\BrowsableAttribute.cs (2)
40/// which is <see cref='System.ComponentModel.BrowsableAttribute.Yes'/>. This <see langword='static '/>field is read-only.</para> 42public static readonly BrowsableAttribute Default = Yes;
compmod\system\componentmodel\TypeConverter.cs (1)
308return GetProperties(context, value, new Attribute[] {BrowsableAttribute.Yes});
System.Activities.Core.Presentation (7)
System\Activities\Core\Presentation\InvokeDelegateDesigner.xaml.cs (1)
39builder.AddCustomAttributes(typeof(InvokeDelegate), DelegateArgumentsPropertyName, PropertyValueEditor.CreateEditorAttribute(typeof(DelegateArgumentsValueEditor)), BrowsableAttribute.Yes);
System\ServiceModel\Activities\Presentation\InitializeCorrelationDesigner.xaml.cs (1)
45builder.AddCustomAttributes(type, "CorrelationData", BrowsableAttribute.Yes);
System\ServiceModel\Activities\Presentation\ReceiveDesigner.xaml.cs (2)
55builder.AddCustomAttributes(receiveType, receiveType.GetProperty("CorrelatesOn"), categoryAttribute, BrowsableAttribute.Yes, 57builder.AddCustomAttributes(receiveType, receiveType.GetProperty("CorrelationInitializers"), categoryAttribute, BrowsableAttribute.Yes,
System\ServiceModel\Activities\Presentation\ReceiveReplyDesigner.xaml.cs (1)
44builder.AddCustomAttributes(receiveType, receiveType.GetProperty("CorrelationInitializers"), categoryAttribute, BrowsableAttribute.Yes,
System\ServiceModel\Activities\Presentation\SendDesigner.xaml.cs (1)
55builder.AddCustomAttributes(sendType, sendType.GetProperty("CorrelationInitializers"), categoryAttribute, BrowsableAttribute.Yes,
System\ServiceModel\Activities\Presentation\SendReplyDesigner.xaml.cs (1)
42builder.AddCustomAttributes(sendType, sendType.GetProperty("CorrelationInitializers"), categoryAttribute, BrowsableAttribute.Yes,
System.Activities.Presentation (1)
System.Activities.Presentation\System\Activities\Presentation\Base\Core\Internal\PropertyEditing\Metadata\PropertyInspectorMetadata.cs (1)
65builder.AddCustomAttributes(owningType, property, BrowsableAttribute.Yes);
System.Data (12)
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\Base\Core\Internal\PropertyEditing\Metadata\PropertyInspectorMetadata.cs (1)
65builder.AddCustomAttributes(owningType, property, BrowsableAttribute.Yes);
fx\src\data\System\Data\Common\DbConnectionStringBuilder.cs (2)
417BrowsableAttribute.Yes, 425BrowsableAttribute.Yes,
fx\src\data\System\Data\OleDb\OledbConnectionStringbuilder.cs (9)
508BrowsableAttribute.Yes, 516BrowsableAttribute.Yes, 524BrowsableAttribute.Yes, 534BrowsableAttribute.Yes, 547BrowsableAttribute.Yes, 562BrowsableAttribute.Yes, 570BrowsableAttribute.Yes, 578BrowsableAttribute.Yes, 587BrowsableAttribute.Yes,
System.Web.Mobile (5)
UI\MobileControls\Design\DeviceSpecificDesigner.cs (1)
332InTemplateMode || _parentContainer == null? BrowsableAttribute.No : BrowsableAttribute.Yes);
UI\MobileControls\Design\MobileTemplatedControlDesigner.cs (3)
818InTemplateMode ? BrowsableAttribute.No : BrowsableAttribute.Yes 826InTemplateMode? BrowsableAttribute.No : BrowsableAttribute.Yes 834InTemplateMode? BrowsableAttribute.No : BrowsableAttribute.Yes
UI\MobileControls\Design\StyleSheetDesigner.cs (1)
1105InTemplateMode ? BrowsableAttribute.No : BrowsableAttribute.Yes,
System.Windows.Forms (9)
winforms\Managed\System\WinForms\ComponentModel\COM2Interop\COM2IPerPropertyBrowsingHandler.cs (1)
76attrEvent.Add(BrowsableAttribute.Yes);
winforms\Managed\System\WinForms\ComponentModel\COM2Interop\COM2IProvidePropertyBuilderHandler.cs (1)
77attrEvent.Add(BrowsableAttribute.Yes);
winforms\Managed\System\WinForms\ComponentModel\COM2Interop\COM2IVsPerPropertyBrowsingHandler.cs (2)
112attrEvent.Add(pfHide ? BrowsableAttribute.No : BrowsableAttribute.Yes); 121attrEvent.Add(BrowsableAttribute.Yes);
winforms\Managed\System\WinForms\ComponentModel\COM2Interop\ComNativeDescriptor.cs (1)
30private AttributeCollection staticAttrs = new AttributeCollection(new Attribute[]{BrowsableAttribute.Yes, DesignTimeVisibleAttribute.No});
winforms\Managed\System\WinForms\PropertyGrid.cs (1)
445browsableAttributes = new AttributeCollection(new Attribute[]{BrowsableAttribute.Yes});
winforms\Managed\System\WinForms\PropertyGridInternal\PropertiesTab.cs (1)
84attributes = new Attribute[]{BrowsableAttribute.Yes};
winforms\Managed\System\WinForms\PropertyGridInternal\SingleSelectRootGridEntry.cs (2)
72browsableAttributes = new AttributeCollection(new Attribute[]{BrowsableAttribute.Yes}); 272this.browsableAttributes = new AttributeCollection(new Attribute[]{BrowsableAttribute.Yes});
System.Workflow.ComponentModel (4)
AuthoringOM\Design\DesignerHelpers.cs (1)
1338PropertyDescriptorCollection properties = TypeDescriptor.GetProperties(component, new Attribute[] { BrowsableAttribute.Yes });
AuthoringOM\Design\ReferenceService.cs (1)
13private static readonly Attribute[] Attributes = new Attribute[] { BrowsableAttribute.Yes };
AuthoringOM\Design\TypeConverters.cs (2)
138props = PropertyDescriptorFilter.FilterProperties(component.Site, value, TypeDescriptor.GetProperties(value, new Attribute[] { BrowsableAttribute.Yes })); 274PropertyDescriptorCollection props = TypeDescriptor.GetProperties(value, new Attribute[] { BrowsableAttribute.Yes });