Code:
/ 4.0 / 4.0 / untmp / 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.] ///
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- SectionInput.cs
- FontStyles.cs
- mongolianshape.cs
- Attributes.cs
- SharedPerformanceCounter.cs
- FixedSOMImage.cs
- Semaphore.cs
- EnvironmentPermission.cs
- IsolatedStoragePermission.cs
- ObjectItemLoadingSessionData.cs
- SmtpNegotiateAuthenticationModule.cs
- GridViewCommandEventArgs.cs
- RemotingConfigParser.cs
- GridViewUpdateEventArgs.cs
- SqlTriggerAttribute.cs
- TransactionOptions.cs
- ArgumentException.cs
- X509ClientCertificateCredentialsElement.cs
- IISMapPath.cs
- MultipartContentParser.cs
- BooleanKeyFrameCollection.cs
- ValidationErrorEventArgs.cs
- UInt16Converter.cs
- UIElementParagraph.cs
- OpenFileDialog.cs
- DataSourceHelper.cs
- LookupBindingPropertiesAttribute.cs
- FullTextState.cs
- PermissionSet.cs
- DbCommandDefinition.cs
- Expression.DebuggerProxy.cs
- NotifyParentPropertyAttribute.cs
- ReadOnlyMetadataCollection.cs
- ImageListStreamer.cs
- XmlnsDefinitionAttribute.cs
- TreeNodeBindingDepthConverter.cs
- CursorInteropHelper.cs
- BidOverLoads.cs
- RsaKeyGen.cs
- HyperLinkColumn.cs
- XmlHelper.cs
- PeerContact.cs
- TraceHwndHost.cs
- WsdlBuildProvider.cs
- serverconfig.cs
- SQLInt64Storage.cs
- CroppedBitmap.cs
- Utils.cs
- StructuredTypeEmitter.cs
- GroupBox.cs
- CallContext.cs
- IdnMapping.cs
- StylusButtonCollection.cs
- SessionEndedEventArgs.cs
- PtsCache.cs
- ConfigurationValue.cs
- ScriptingWebServicesSectionGroup.cs
- ClientUtils.cs
- RuntimeConfigLKG.cs
- DataGridDesigner.cs
- PictureBoxDesigner.cs
- DisableDpiAwarenessAttribute.cs
- ChildrenQuery.cs
- XmlQualifiedName.cs
- safesecurityhelperavalon.cs
- ManipulationStartingEventArgs.cs
- ScrollViewerAutomationPeer.cs
- OracleRowUpdatedEventArgs.cs
- ProfilePropertyNameValidator.cs
- PeerNameRecord.cs
- PriorityChain.cs
- WizardForm.cs
- Msmq4SubqueuePoisonHandler.cs
- PageRouteHandler.cs
- TableFieldsEditor.cs
- JpegBitmapDecoder.cs
- FrameworkContentElementAutomationPeer.cs
- DomNameTable.cs
- UpdatePanelControlTrigger.cs
- RequestSecurityTokenResponse.cs
- CodeIdentifier.cs
- ASCIIEncoding.cs
- TreeBuilder.cs
- CompressStream.cs
- URLMembershipCondition.cs
- Cloud.cs
- ElasticEase.cs
- Missing.cs
- CodeTypeReferenceExpression.cs
- PageTheme.cs
- DbConnectionPoolGroup.cs
- TokenBasedSetEnumerator.cs
- HashMembershipCondition.cs
- FileRegion.cs
- ActivityExecutionContext.cs
- RectangleConverter.cs
- BinarySerializer.cs
- FormatterServicesNoSerializableCheck.cs
- PreviewPageInfo.cs
- Symbol.cs