Code:
/ DotNET / DotNET / 8.0 / untmp / whidbey / REDBITS / ndp / fx / src / Designer / CompMod / System / ComponentModel / Design / DesignerActionItem.cs / 1 / DesignerActionItem.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.ComponentModel.Design { using System; using System.Collections; using System.Collections.Specialized; using System.ComponentModel; using System.Text.RegularExpressions; ////// /// A menu command that defines text and other metadata to describe a targeted task that can be performed. // Tasks typically walk the user through some multi-step process, such as configuring a data source for a component. // Designer tasks are shown in a custom piece of UI (Chrome). /// public abstract class DesignerActionItem { private bool allowAssociate; private string displayName; private string description; private string category; private IDictionary properties; ////// /// /// [to be provvided] /// public DesignerActionItem(string displayName, string category, string description) { this.category = category; this.description = description; this.displayName = displayName == null ? null : Regex.Replace(displayName, @"\(\&.\)", ""); // VSWHIDBEY 485835 } internal DesignerActionItem() { } ////// /// [to be provvided] /// public bool AllowAssociate { get { return allowAssociate; } set { allowAssociate = value; } } ////// /// [to be provvided] /// public virtual string Category { get { return category; } } ////// /// [to be provvided] /// public virtual string Description { get { return description; } } ////// /// [to be provvided] /// public virtual string DisplayName { get { return displayName; } } ////// /// [to be provvided] /// public IDictionary Properties { get { if (properties == null) { properties = new HybridDictionary(); } return properties; } } } } // 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
- ZipFileInfoCollection.cs
- MouseButtonEventArgs.cs
- TextParagraph.cs
- MissingMethodException.cs
- ExpressionNode.cs
- WindowsSpinner.cs
- WorkerRequest.cs
- WrappedIUnknown.cs
- MouseWheelEventArgs.cs
- RequestDescription.cs
- DbBuffer.cs
- RootProjectionNode.cs
- ItemCollectionEditor.cs
- AdCreatedEventArgs.cs
- WrapPanel.cs
- EnumType.cs
- IndependentAnimationStorage.cs
- webbrowsersite.cs
- XmlValidatingReaderImpl.cs
- SignatureHelper.cs
- InternalMappingException.cs
- RectangleConverter.cs
- Cursor.cs
- IgnoreSectionHandler.cs
- EntityContainerEntitySet.cs
- httpapplicationstate.cs
- WebPartEditorCancelVerb.cs
- ListViewCommandEventArgs.cs
- BitmapEffectInput.cs
- RIPEMD160Managed.cs
- ChildChangedEventArgs.cs
- DefaultTraceListener.cs
- SetterBaseCollection.cs
- FixedTextSelectionProcessor.cs
- MergeLocalizationDirectives.cs
- EntityClassGenerator.cs
- DataGridViewTextBoxEditingControl.cs
- ObjectAnimationBase.cs
- SafeNativeMethods.cs
- SqlBooleanMismatchVisitor.cs
- StringArrayConverter.cs
- StringCollection.cs
- AlignmentXValidation.cs
- Subset.cs
- ModuleConfigurationInfo.cs
- Literal.cs
- CommandPlan.cs
- ToolStripDesignerAvailabilityAttribute.cs
- PrintDocument.cs
- Atom10FeedFormatter.cs
- SubpageParaClient.cs
- Latin1Encoding.cs
- Token.cs
- DictionaryManager.cs
- JsonReader.cs
- UniqueConstraint.cs
- TextServicesPropertyRanges.cs
- ISessionStateStore.cs
- TypeSystem.cs
- SizeChangedInfo.cs
- DependencyProperty.cs
- SqlConnectionString.cs
- BeginStoryboard.cs
- WizardPanelChangingEventArgs.cs
- DefaultMergeHelper.cs
- ObjectDataProvider.cs
- XsltArgumentList.cs
- ResumeStoryboard.cs
- MenuItemStyleCollection.cs
- Visual.cs
- TableItemStyle.cs
- PolicyException.cs
- LightweightCodeGenerator.cs
- ErrorWrapper.cs
- InputLanguageManager.cs
- ClientSettings.cs
- TrackingExtract.cs
- PropertyTab.cs
- WindowsRichEditRange.cs
- ToolStripProgressBar.cs
- CubicEase.cs
- TypeCollectionDesigner.xaml.cs
- TextTreeRootNode.cs
- Subtree.cs
- ClickablePoint.cs
- NativeMethods.cs
- Encoding.cs
- TransformerConfigurationWizardBase.cs
- BinaryCommonClasses.cs
- GridLengthConverter.cs
- XmlChildNodes.cs
- XhtmlBasicListAdapter.cs
- LocalizationParserHooks.cs
- PeerNameRecord.cs
- URLIdentityPermission.cs
- MarginsConverter.cs
- TypeLoader.cs
- WizardPanelChangingEventArgs.cs
- Image.cs
- CustomDictionarySources.cs