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
- MethodToken.cs
- XmlAttributes.cs
- Misc.cs
- CapabilitiesRule.cs
- RuntimeArgumentHandle.cs
- InkCanvasSelection.cs
- DataBinder.cs
- IsolatedStorageFilePermission.cs
- PasswordTextNavigator.cs
- FunctionDescription.cs
- FormatControl.cs
- LabelEditEvent.cs
- HebrewNumber.cs
- EventLogger.cs
- RSAProtectedConfigurationProvider.cs
- PatternMatcher.cs
- ParenthesizePropertyNameAttribute.cs
- Vector3DAnimation.cs
- LocalizedNameDescriptionPair.cs
- Literal.cs
- UIElement.cs
- Expression.DebuggerProxy.cs
- Profiler.cs
- FamilyTypefaceCollection.cs
- NameTable.cs
- XmlAutoDetectWriter.cs
- WebControl.cs
- CompilerGlobalScopeAttribute.cs
- EpmContentSerializerBase.cs
- DesigntimeLicenseContextSerializer.cs
- Pointer.cs
- UpDownBase.cs
- FileIOPermission.cs
- StructureChangedEventArgs.cs
- XamlTreeBuilder.cs
- CurrentChangingEventArgs.cs
- EditingCommands.cs
- CuspData.cs
- CodeTypeMember.cs
- InheritanceAttribute.cs
- ColumnResizeAdorner.cs
- PerformanceCounterManager.cs
- CookielessHelper.cs
- MLangCodePageEncoding.cs
- WhitespaceRuleReader.cs
- Model3DGroup.cs
- CompressionTransform.cs
- ZeroOpNode.cs
- ProfilePropertyNameValidator.cs
- UnsignedPublishLicense.cs
- ProfileSettingsCollection.cs
- Version.cs
- EdmToObjectNamespaceMap.cs
- RegistrySecurity.cs
- BrushMappingModeValidation.cs
- TextTreeTextBlock.cs
- _Events.cs
- ErasingStroke.cs
- EntityDataSourceState.cs
- DigitalSignatureProvider.cs
- StringConverter.cs
- Assembly.cs
- ColorTransformHelper.cs
- Quaternion.cs
- DesignOnlyAttribute.cs
- GlobalizationSection.cs
- HttpCookiesSection.cs
- AsyncPostBackErrorEventArgs.cs
- AmbientLight.cs
- FileDialog.cs
- ArglessEventHandlerProxy.cs
- PolyBezierSegmentFigureLogic.cs
- CompilerErrorCollection.cs
- TripleDES.cs
- AdornerDecorator.cs
- MediaScriptCommandRoutedEventArgs.cs
- ObjectListCommand.cs
- MachineKeyConverter.cs
- Encoding.cs
- StrokeCollectionConverter.cs
- LocatorPartList.cs
- TextWriterEngine.cs
- MemoryPressure.cs
- ExpressionVisitorHelpers.cs
- WorkflowApplicationEventArgs.cs
- BounceEase.cs
- RC2.cs
- CategoriesDocumentFormatter.cs
- GenericUriParser.cs
- KeyToListMap.cs
- CLRBindingWorker.cs
- XPathCompiler.cs
- HttpHandler.cs
- PlacementWorkspace.cs
- SBCSCodePageEncoding.cs
- CapabilitiesState.cs
- dsa.cs
- AuthorizationSection.cs
- DataTemplateSelector.cs
- MutexSecurity.cs