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
- DateTimePicker.cs
- BehaviorService.cs
- TextInfo.cs
- EntityCommand.cs
- ObjRef.cs
- SqlUnionizer.cs
- StrongNameMembershipCondition.cs
- WindowsGraphicsCacheManager.cs
- UnicodeEncoding.cs
- WebPermission.cs
- MethodCallTranslator.cs
- util.cs
- SafeNativeMethodsCLR.cs
- TemplateNodeContextMenu.cs
- MetadataUtilsSmi.cs
- ParamArrayAttribute.cs
- AuthorizationPolicyTypeElement.cs
- CodeDOMProvider.cs
- DocumentSequenceHighlightLayer.cs
- ILGenerator.cs
- StylusLogic.cs
- Module.cs
- BaseDataBoundControl.cs
- ParamArrayAttribute.cs
- FileDialog_Vista_Interop.cs
- Msmq4SubqueuePoisonHandler.cs
- ControlTemplate.cs
- printdlgexmarshaler.cs
- TextTreeRootNode.cs
- ZipIOLocalFileHeader.cs
- SizeKeyFrameCollection.cs
- DesignerTransactionCloseEvent.cs
- PageBreakRecord.cs
- WmlTextViewAdapter.cs
- StringValidatorAttribute.cs
- SecurityTokenRequirement.cs
- XPathNodeHelper.cs
- SqlReorderer.cs
- ContentType.cs
- EventEntry.cs
- RandomNumberGenerator.cs
- XPathQilFactory.cs
- SerializableAttribute.cs
- SessionState.cs
- IdentityHolder.cs
- Console.cs
- TransformerConfigurationWizardBase.cs
- PipelineModuleStepContainer.cs
- SkewTransform.cs
- AssemblyName.cs
- DataObjectMethodAttribute.cs
- SerializerProvider.cs
- HtmlElement.cs
- DataChangedEventManager.cs
- RootProfilePropertySettingsCollection.cs
- PageCache.cs
- MediaScriptCommandRoutedEventArgs.cs
- Type.cs
- Fonts.cs
- VisualStateChangedEventArgs.cs
- MembershipUser.cs
- PointF.cs
- UniqueEventHelper.cs
- Splitter.cs
- MergeExecutor.cs
- AsyncOperationManager.cs
- TrustManagerPromptUI.cs
- LifetimeServices.cs
- InvokeMethod.cs
- MemoryMappedFile.cs
- ThemeableAttribute.cs
- XmlSchemaSubstitutionGroup.cs
- DescendantBaseQuery.cs
- DbExpressionVisitor_TResultType.cs
- TextElementAutomationPeer.cs
- ToolTipAutomationPeer.cs
- ControlBuilderAttribute.cs
- messageonlyhwndwrapper.cs
- ILGenerator.cs
- SQLUtility.cs
- FileSystemInfo.cs
- GridViewSelectEventArgs.cs
- IssuerInformation.cs
- Rect3D.cs
- DESCryptoServiceProvider.cs
- XmlCollation.cs
- XmlSchemaInclude.cs
- SqlDataSourceView.cs
- Win32.cs
- SourceChangedEventArgs.cs
- HttpWriter.cs
- BuildProviderInstallComponent.cs
- IdentifierCollection.cs
- DataSvcMapFileSerializer.cs
- ModelPropertyCollectionImpl.cs
- _emptywebproxy.cs
- InputScopeManager.cs
- CompressStream.cs
- ThicknessConverter.cs
- ByteFacetDescriptionElement.cs