Code:
/ DotNET / DotNET / 8.0 / untmp / whidbey / REDBITS / ndp / fx / src / Designer / CompMod / System / ComponentModel / Design / DesignerActionList.cs / 1 / DesignerActionList.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.ComponentModel.Design { using System; using System.Collections; using System.Collections.Generic; using System.Reflection; ////// /// DesignerActionList is the abstract base class which control authors inherit from to create a task sheet. /// Typical usage is to add properties and methods and then implement the abstract /// GetSortedActionItems method to return an array of DesignerActionItems in the order they are to be displayed. /// public class DesignerActionList { private bool _autoShow = false; private IComponent _component; ////// /// takes the related component as a parameter /// public DesignerActionList(IComponent component) { _component = component; } ////// /// [to be provvided] /// public virtual bool AutoShow { get { return _autoShow; } set { if(_autoShow != value) { _autoShow = value; } } } ////// /// this will be null for list created from upgraded verbs collection... /// public IComponent Component { get { return _component; } } ////// /// [to be provvided] /// public object GetService(Type serviceType) { if (_component != null && _component.Site != null) { return _component.Site.GetService(serviceType); } else { return null; } } private object GetCustomAttribute(MemberInfo info, Type attributeType) { object[] attributes = info.GetCustomAttributes(attributeType, true); if (attributes.Length > 0) { return attributes[0]; } else { return null; } } private void GetMemberDisplayProperties(MemberInfo info, out string displayName, out string description, out string category) { displayName = description = category = ""; DescriptionAttribute descAttr = GetCustomAttribute(info, typeof(DescriptionAttribute)) as DescriptionAttribute; if(descAttr != null) { description = descAttr.Description; } DisplayNameAttribute dispNameAttr = GetCustomAttribute(info, typeof(DisplayNameAttribute)) as DisplayNameAttribute; if(dispNameAttr != null) { displayName = dispNameAttr.DisplayName; } CategoryAttribute catAttr = GetCustomAttribute(info, typeof(CategoryAttribute)) as CategoryAttribute; if(dispNameAttr != null) { category = catAttr.Category; } if (string.IsNullOrEmpty(displayName)) { displayName = info.Name; } } ////// /// [to be provvided] /// public virtual DesignerActionItemCollection GetSortedActionItems() { string dispName, desc, cat; SortedListitems = new SortedList (); // we want to ignore the public methods and properties for THIS class (only take the inherited ones) IList originalMethods = Array.AsReadOnly(typeof(DesignerActionList).GetMethods(BindingFlags.InvokeMethod | BindingFlags.Instance | BindingFlags.DeclaredOnly | BindingFlags.Public)); IList originalProperties = Array.AsReadOnly(typeof(DesignerActionList).GetProperties(BindingFlags.InvokeMethod | BindingFlags.Instance | BindingFlags.DeclaredOnly | BindingFlags.Public)); // Do methods MethodInfo[] methods = this.GetType().GetMethods(BindingFlags.InvokeMethod | BindingFlags.Instance | BindingFlags.DeclaredOnly | BindingFlags.Public); foreach (MethodInfo info in methods) { if(originalMethods.Contains(info)) continue; // Make sure there are only methods that take no parameters if (info.GetParameters().Length == 0 && !info.IsSpecialName ) { GetMemberDisplayProperties(info, out dispName, out desc, out cat); items.Add(info.Name, new DesignerActionMethodItem(this, info.Name, dispName, cat, desc)); } } // Do properties PropertyInfo [] properties = this.GetType().GetProperties(BindingFlags.InvokeMethod | BindingFlags.Instance | BindingFlags.DeclaredOnly | BindingFlags.Public); foreach (PropertyInfo info in properties) { if(originalProperties.Contains(info)) continue; GetMemberDisplayProperties(info, out dispName, out desc, out cat); items.Add(dispName, new DesignerActionPropertyItem(info.Name, dispName, cat, desc)); } DesignerActionItemCollection returnValue = new DesignerActionItemCollection(); foreach (DesignerActionItem dai in items.Values) { returnValue.Add(dai); } return returnValue; } } } // 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
- WindowsStatusBar.cs
- TextFormatterImp.cs
- TransactionManagerProxy.cs
- PathFigureCollectionConverter.cs
- PropertyPathConverter.cs
- RbTree.cs
- TreeNodeStyle.cs
- ProtocolInformationWriter.cs
- GridToolTip.cs
- Set.cs
- SapiAttributeParser.cs
- Label.cs
- RealizationContext.cs
- FrameworkTemplate.cs
- DocumentViewerConstants.cs
- Padding.cs
- WebPartRestoreVerb.cs
- PeerPresenceInfo.cs
- SyndicationItem.cs
- NativeMethodsOther.cs
- MasterPageBuildProvider.cs
- SecurityTokenProvider.cs
- DoubleCollectionConverter.cs
- Internal.cs
- CryptoConfig.cs
- ButtonFieldBase.cs
- EllipseGeometry.cs
- WebPartHeaderCloseVerb.cs
- ExtenderControl.cs
- AssertFilter.cs
- DbProviderServices.cs
- StyleHelper.cs
- SoapSchemaExporter.cs
- ToolStripRendererSwitcher.cs
- Int32Rect.cs
- DiffuseMaterial.cs
- ImageFormat.cs
- ExpressionWriter.cs
- ResolveDuplex11AsyncResult.cs
- DataGridViewBindingCompleteEventArgs.cs
- EntityDataSourceMemberPath.cs
- Helpers.cs
- Debug.cs
- WebConfigurationManager.cs
- WebEventTraceProvider.cs
- MenuRendererClassic.cs
- StringPropertyBuilder.cs
- RequestQueryParser.cs
- CuspData.cs
- DataGridViewMethods.cs
- ModelTypeConverter.cs
- AgileSafeNativeMemoryHandle.cs
- QuaternionAnimationUsingKeyFrames.cs
- LinqDataSourceContextEventArgs.cs
- QueryOperationResponseOfT.cs
- ListViewItem.cs
- OutputCacheSettings.cs
- XmlAttributeCache.cs
- XmlQueryOutput.cs
- TreeView.cs
- BmpBitmapEncoder.cs
- RelatedView.cs
- RuntimeIdentifierPropertyAttribute.cs
- CompilerTypeWithParams.cs
- AddDataControlFieldDialog.cs
- ComponentCollection.cs
- OleDbWrapper.cs
- AsymmetricSignatureDeformatter.cs
- TreeViewEvent.cs
- SecurityTokenException.cs
- BindingSource.cs
- PrintDialog.cs
- TransactionTable.cs
- QueryStringConverter.cs
- TextControlDesigner.cs
- RuntimeHelpers.cs
- ZipIOModeEnforcingStream.cs
- PerspectiveCamera.cs
- GridToolTip.cs
- DesignerActionList.cs
- _Semaphore.cs
- ObjectListComponentEditor.cs
- CheckBox.cs
- NewItemsContextMenuStrip.cs
- HwndProxyElementProvider.cs
- AccessKeyManager.cs
- CompilationSection.cs
- NameValueSectionHandler.cs
- SQLInt32.cs
- SspiWrapper.cs
- Canvas.cs
- CachingHintValidation.cs
- RtfControls.cs
- ParserExtension.cs
- WhereQueryOperator.cs
- WindowsRegion.cs
- EncoderParameter.cs
- WebPartUserCapability.cs
- Icon.cs
- LineMetrics.cs