Code:
/ DotNET / DotNET / 8.0 / untmp / whidbey / REDBITS / ndp / fx / src / Designer / WinForms / System / WinForms / Design / ToolStripCustomTypeDescriptor.cs / 1 / ToolStripCustomTypeDescriptor.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- /* */ namespace System.Windows.Forms.Design { using System.Design; using System.ComponentModel; using System.Diagnostics; using System; using System.Collections; using System.ComponentModel.Design; using System.ComponentModel.Design.Serialization; using System.Windows.Forms; ////// ToolStripCustomTypeDescriptor class. /// internal class ToolStripCustomTypeDescriptor : CustomTypeDescriptor { ToolStrip instance = null; PropertyDescriptor propItems = null; PropertyDescriptorCollection collection = null; public ToolStripCustomTypeDescriptor(ToolStrip instance) : base() { this.instance = instance; } ////// /// The GetPropertyOwner method returns an instance of an object that /// owns the given property for the object this type descriptor is representing. /// An optional attribute array may be provided to filter the collection that is /// returned. Returning null from this method causes the TypeDescriptor object /// to use its default type description services. /// public override object GetPropertyOwner(PropertyDescriptor pd) { return instance; } ////// /// The GetProperties method returns a collection of property descriptors /// for the object this type descriptor is representing. An optional /// attribute array may be provided to filter the collection that is returned. /// If no parent is provided,this will return an empty /// property collection. /// public override PropertyDescriptorCollection GetProperties() { if (instance!= null && collection == null) { PropertyDescriptorCollection retColl = TypeDescriptor.GetProperties(instance); PropertyDescriptor[] propArray = new PropertyDescriptor[retColl.Count]; retColl.CopyTo(propArray, 0); collection = new PropertyDescriptorCollection(propArray, false); } if (collection.Count > 0) { propItems = collection["Items"]; if (propItems != null) { collection.Remove(propItems); } } return collection; } ////// /// The GetProperties method returns a collection of property descriptors /// for the object this type descriptor is representing. An optional /// attribute array may be provided to filter the collection that is returned. /// If no parent is provided,this will return an empty /// property collection. /// Here we will pass the "collection without the "items" property. /// public override PropertyDescriptorCollection GetProperties(Attribute[] attributes) { if (instance!= null && collection == null) { PropertyDescriptorCollection retColl = TypeDescriptor.GetProperties(instance); PropertyDescriptor[] propArray = new PropertyDescriptor[retColl.Count]; retColl.CopyTo(propArray, 0); collection = new PropertyDescriptorCollection(propArray, false); } if (collection.Count > 0) { propItems = collection["Items"]; if (propItems != null) { collection.Remove(propItems); } } return collection; } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- Imaging.cs
- WebDescriptionAttribute.cs
- BitmapEffectDrawingContent.cs
- Binding.cs
- ByteRangeDownloader.cs
- EndOfStreamException.cs
- BitmapEffectGroup.cs
- UIElement3D.cs
- DecoratedNameAttribute.cs
- ReadWriteSpinLock.cs
- QfeChecker.cs
- RequestCacheValidator.cs
- ZipIOCentralDirectoryFileHeader.cs
- TypeLoadException.cs
- __ConsoleStream.cs
- SiteMapHierarchicalDataSourceView.cs
- DecimalConstantAttribute.cs
- ControlBuilder.cs
- UnmanagedMemoryStreamWrapper.cs
- EntityProviderFactory.cs
- FontNamesConverter.cs
- RowsCopiedEventArgs.cs
- DynamicValidator.cs
- MetabaseServerConfig.cs
- CompositeFontFamily.cs
- ScrollBarRenderer.cs
- WebPartConnection.cs
- CriticalHandle.cs
- Ports.cs
- ComboBox.cs
- SchemaNamespaceManager.cs
- PolicyStatement.cs
- PlatformNotSupportedException.cs
- DropDownList.cs
- Empty.cs
- DataChangedEventManager.cs
- MultiTrigger.cs
- SolidColorBrush.cs
- UpDownEvent.cs
- DesignerActionGlyph.cs
- MemberHolder.cs
- InputBuffer.cs
- NavigatorOutput.cs
- FieldToken.cs
- Solver.cs
- OleDbInfoMessageEvent.cs
- BaseHashHelper.cs
- PageStatePersister.cs
- RadioButtonFlatAdapter.cs
- ThreadExceptionEvent.cs
- NumericUpDown.cs
- MergeFilterQuery.cs
- CookielessHelper.cs
- MiniModule.cs
- RightsManagementErrorHandler.cs
- Gdiplus.cs
- recordstatescratchpad.cs
- CellPartitioner.cs
- MultiView.cs
- SerializationInfoEnumerator.cs
- FileDialogPermission.cs
- DrawingAttributesDefaultValueFactory.cs
- MembershipValidatePasswordEventArgs.cs
- QueueException.cs
- DbDeleteCommandTree.cs
- StringConcat.cs
- TrustLevelCollection.cs
- QueryConverter.cs
- QueryConverter.cs
- PeerInputChannelListener.cs
- WebDescriptionAttribute.cs
- CodeGotoStatement.cs
- SessionSymmetricTransportSecurityProtocolFactory.cs
- SvcMapFileLoader.cs
- JapaneseLunisolarCalendar.cs
- CodeMethodReturnStatement.cs
- CompilerGlobalScopeAttribute.cs
- TypeUsageBuilder.cs
- QuestionEventArgs.cs
- DispatchChannelSink.cs
- DataColumnMapping.cs
- Semaphore.cs
- DataGridViewControlCollection.cs
- FirstQueryOperator.cs
- SrgsRulesCollection.cs
- XmlHierarchyData.cs
- EdmType.cs
- SpecialNameAttribute.cs
- XsltLibrary.cs
- AuthorizationRule.cs
- TraceUtility.cs
- OraclePermissionAttribute.cs
- SafeLocalMemHandle.cs
- MethodAccessException.cs
- PixelShader.cs
- TextModifier.cs
- GatewayDefinition.cs
- OleDbDataReader.cs
- DataGridViewComboBoxColumnDesigner.cs
- mediapermission.cs