Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / WinForms / Managed / System / WinForms / PropertyGridInternal / PropertiesTab.cs / 1305376 / PropertiesTab.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Windows.Forms.PropertyGridInternal { using System.Runtime.InteropServices; using System.Diagnostics; using System; using System.ComponentModel.Design; using System.ComponentModel; using System.Windows.Forms.ComponentModel; using System.Windows.Forms.Design; using System.Collections; using Microsoft.Win32; ////// /// [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.InheritanceDemand, Name="FullTrust")] [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Name="FullTrust")] public class PropertiesTab : PropertyTab { ///[To be supplied.] ////// /// public override string TabName { get { return SR.GetString(SR.PBRSToolTipProperties); } } ///[To be supplied.] ////// /// public override string HelpKeyword { get { return "vs.properties"; // do not localize. } } ///[To be supplied.] ////// /// public override PropertyDescriptor GetDefaultProperty(object obj) { PropertyDescriptor def = base.GetDefaultProperty(obj); if (def == null) { PropertyDescriptorCollection props = GetProperties(obj); if (props != null) { for (int i = 0; i < props.Count; i++) { if ("Name".Equals(props[i].Name)) { def = props[i]; break; } } } } return def; } ///[To be supplied.] ////// /// public override PropertyDescriptorCollection GetProperties(object component, Attribute[] attributes) { return GetProperties(null, component, attributes); } ///[To be supplied.] ////// /// public override PropertyDescriptorCollection GetProperties(ITypeDescriptorContext context, object component, Attribute[] attributes) { if (attributes == null) { attributes = new Attribute[]{BrowsableAttribute.Yes}; } if (context == null) { return TypeDescriptor.GetProperties(component, attributes); } else { TypeConverter tc = (context.PropertyDescriptor == null ? TypeDescriptor.GetConverter(component) : context.PropertyDescriptor.Converter); if (tc == null || !tc.GetPropertiesSupported(context)) { return TypeDescriptor.GetProperties(component, attributes); } else { return tc.GetProperties(context, component, attributes); } } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ //[To be supplied.] ///// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Windows.Forms.PropertyGridInternal { using System.Runtime.InteropServices; using System.Diagnostics; using System; using System.ComponentModel.Design; using System.ComponentModel; using System.Windows.Forms.ComponentModel; using System.Windows.Forms.Design; using System.Collections; using Microsoft.Win32; ////// /// [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.InheritanceDemand, Name="FullTrust")] [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Name="FullTrust")] public class PropertiesTab : PropertyTab { ///[To be supplied.] ////// /// public override string TabName { get { return SR.GetString(SR.PBRSToolTipProperties); } } ///[To be supplied.] ////// /// public override string HelpKeyword { get { return "vs.properties"; // do not localize. } } ///[To be supplied.] ////// /// public override PropertyDescriptor GetDefaultProperty(object obj) { PropertyDescriptor def = base.GetDefaultProperty(obj); if (def == null) { PropertyDescriptorCollection props = GetProperties(obj); if (props != null) { for (int i = 0; i < props.Count; i++) { if ("Name".Equals(props[i].Name)) { def = props[i]; break; } } } } return def; } ///[To be supplied.] ////// /// public override PropertyDescriptorCollection GetProperties(object component, Attribute[] attributes) { return GetProperties(null, component, attributes); } ///[To be supplied.] ////// /// public override PropertyDescriptorCollection GetProperties(ITypeDescriptorContext context, object component, Attribute[] attributes) { if (attributes == null) { attributes = new Attribute[]{BrowsableAttribute.Yes}; } if (context == null) { return TypeDescriptor.GetProperties(component, attributes); } else { TypeConverter tc = (context.PropertyDescriptor == null ? TypeDescriptor.GetConverter(component) : context.PropertyDescriptor.Converter); if (tc == null || !tc.GetPropertiesSupported(context)) { return TypeDescriptor.GetProperties(component, attributes); } else { return tc.GetProperties(context, component, attributes); } } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007.[To be supplied.] ///
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- DataPagerCommandEventArgs.cs
- StandardCommands.cs
- SelectionItemProviderWrapper.cs
- RepeatButton.cs
- PeerName.cs
- IIS7UserPrincipal.cs
- CoreSwitches.cs
- RequestNavigateEventArgs.cs
- ToolStripTextBox.cs
- EventItfInfo.cs
- XmlAttributes.cs
- HttpCookiesSection.cs
- EmptyControlCollection.cs
- XmlCDATASection.cs
- FixedSOMPageConstructor.cs
- QilValidationVisitor.cs
- StrokeCollectionDefaultValueFactory.cs
- EntityAdapter.cs
- WebPartHeaderCloseVerb.cs
- ThemeDirectoryCompiler.cs
- SoapSchemaMember.cs
- XPathQueryGenerator.cs
- ValueOfAction.cs
- SchemeSettingElement.cs
- SEHException.cs
- ControlEvent.cs
- XmlAttributes.cs
- DataGridViewTextBoxEditingControl.cs
- TreeNode.cs
- PagePropertiesChangingEventArgs.cs
- WindowsBrush.cs
- SwitchLevelAttribute.cs
- SystemWebSectionGroup.cs
- InternalConfigSettingsFactory.cs
- BigInt.cs
- ExtenderProviderService.cs
- FilterElement.cs
- XmlWellformedWriter.cs
- RemoteCryptoDecryptRequest.cs
- CompressEmulationStream.cs
- rsa.cs
- DataSvcMapFileSerializer.cs
- DataGridViewTopLeftHeaderCell.cs
- ToolStripArrowRenderEventArgs.cs
- MultipartContentParser.cs
- IPAddressCollection.cs
- X509Certificate2.cs
- StateChangeEvent.cs
- WorkflowRequestContext.cs
- CallId.cs
- SqlReorderer.cs
- ApplicationBuildProvider.cs
- DirectoryInfo.cs
- MailWebEventProvider.cs
- CollectionType.cs
- EntityDesignerBuildProvider.cs
- SmiEventSink_DeferedProcessing.cs
- Knowncolors.cs
- TransformerInfoCollection.cs
- ItemsChangedEventArgs.cs
- XmlWellformedWriter.cs
- PenThreadPool.cs
- BaseTemplateCodeDomTreeGenerator.cs
- EmptyWorkItem.cs
- UpDownEvent.cs
- EmissiveMaterial.cs
- StickyNoteContentControl.cs
- EdgeProfileValidation.cs
- PeerName.cs
- WrapperEqualityComparer.cs
- WindowsEditBox.cs
- Journal.cs
- XpsDocumentEvent.cs
- ObjectDataSource.cs
- TransactionScopeDesigner.cs
- ErrorWebPart.cs
- CheckPair.cs
- Light.cs
- InsufficientMemoryException.cs
- GroupDescription.cs
- XmlTextReaderImplHelpers.cs
- AsymmetricCryptoHandle.cs
- NamedPipeAppDomainProtocolHandler.cs
- Semaphore.cs
- TypeFieldSchema.cs
- XmlNode.cs
- TextPenaltyModule.cs
- HttpApplicationFactory.cs
- ElementAction.cs
- SqlDataSourceCache.cs
- WebPartsPersonalization.cs
- InstanceHandleReference.cs
- FixedPage.cs
- SchemaMapping.cs
- BlurEffect.cs
- PerformanceCounterManager.cs
- RegistrationServices.cs
- Vars.cs
- ConfigurationManagerInternalFactory.cs
- PointHitTestResult.cs