Code:
/ FX-1434 / FX-1434 / 1.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
- StandardOleMarshalObject.cs
- QueuePathDialog.cs
- DrawingAttributesDefaultValueFactory.cs
- BadImageFormatException.cs
- RepeatInfo.cs
- ComponentFactoryHelpers.cs
- ConfigurationManagerHelper.cs
- ListViewGroupConverter.cs
- PrinterUnitConvert.cs
- RootBrowserWindowProxy.cs
- TraceInternal.cs
- FileDataSourceCache.cs
- RequestQueryParser.cs
- ClientRolePrincipal.cs
- XPathArrayIterator.cs
- ThreadPool.cs
- XsdDuration.cs
- Crypto.cs
- QilUnary.cs
- ExpressionEditorAttribute.cs
- ThicknessAnimationBase.cs
- RenderOptions.cs
- SimpleWebHandlerParser.cs
- StrokeRenderer.cs
- TokenBasedSet.cs
- ILGenerator.cs
- IPAddress.cs
- hresults.cs
- BatchWriter.cs
- Vector3D.cs
- UdpSocketReceiveManager.cs
- BitmapInitialize.cs
- ObjectDataSourceEventArgs.cs
- ToolStripTextBox.cs
- ActivationArguments.cs
- GenericPrincipal.cs
- AppDomainCompilerProxy.cs
- RequiredFieldValidator.cs
- QuaternionValueSerializer.cs
- UpDownBase.cs
- FormatSettings.cs
- MeshGeometry3D.cs
- OracleBinary.cs
- ControlLocalizer.cs
- RtfToXamlLexer.cs
- XmlCodeExporter.cs
- InlineUIContainer.cs
- UnsafeNativeMethods.cs
- BaseDataBoundControl.cs
- IPAddress.cs
- GetPageCompletedEventArgs.cs
- ModulesEntry.cs
- DataGridHeaderBorder.cs
- DisableDpiAwarenessAttribute.cs
- Figure.cs
- SetterBase.cs
- MultiAsyncResult.cs
- WindowsPen.cs
- XmlTypeAttribute.cs
- WindowsSpinner.cs
- SqlBuffer.cs
- SortDescriptionCollection.cs
- IisTraceWebEventProvider.cs
- CompositeFontParser.cs
- BatchParser.cs
- BinaryWriter.cs
- ConfigurationValidatorAttribute.cs
- Marshal.cs
- InvalidWorkflowException.cs
- Quaternion.cs
- DesignerOptionService.cs
- EpmHelper.cs
- ConstraintManager.cs
- WsdlHelpGeneratorElement.cs
- SQLBinary.cs
- MergeExecutor.cs
- ResourceDisplayNameAttribute.cs
- FrameworkPropertyMetadata.cs
- WindowInteractionStateTracker.cs
- BufferBuilder.cs
- OverflowException.cs
- Assert.cs
- InfoCardXmlSerializer.cs
- DynamicResourceExtension.cs
- XmlDocumentType.cs
- HwndSourceKeyboardInputSite.cs
- DataGridPageChangedEventArgs.cs
- TypefaceMetricsCache.cs
- EntityDataSourceContainerNameItem.cs
- GetBrowserTokenRequest.cs
- SoapTypeAttribute.cs
- SubtreeProcessor.cs
- FontFaceLayoutInfo.cs
- ClientSettingsStore.cs
- EventRouteFactory.cs
- BeginSelectCardRequest.cs
- SqlGatherProducedAliases.cs
- TransactionManager.cs
- Propagator.Evaluator.cs
- UnsafeNativeMethods.cs