Code:
/ FX-1434 / FX-1434 / 1.0 / untmp / whidbey / REDBITS / ndp / fx / src / Designer / CompMod / System / ComponentModel / Design / DesignerActionVerbItem.cs / 1 / DesignerActionVerbItem.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.ComponentModel.Design { using System; using System.ComponentModel; using System.Design; using System.Reflection; ////// /// [to be provided] /// internal class DesignerActionVerbItem : DesignerActionMethodItem { private DesignerVerb _targetVerb; public DesignerActionVerbItem(DesignerVerb verb) { if(verb == null) { throw (new ArgumentNullException()); } _targetVerb = verb; } public override string Category { get { return "Verbs"; } } public override string Description { get { return _targetVerb.Description; } } public override string DisplayName { get { return _targetVerb.Text; } } public override string MemberName { get { return null; } } public override bool IncludeAsDesignerVerb{ get { return false; } } public override void Invoke() { _targetVerb.Invoke(); } } } // 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
- HtmlEmptyTagControlBuilder.cs
- XmlHierarchicalDataSourceView.cs
- _AcceptOverlappedAsyncResult.cs
- ArrangedElement.cs
- CustomErrorsSection.cs
- DbgUtil.cs
- DateTimeOffsetAdapter.cs
- AmbiguousMatchException.cs
- Soap12ProtocolReflector.cs
- WsiProfilesElement.cs
- ColumnHeaderCollectionEditor.cs
- OLEDB_Util.cs
- OleStrCAMarshaler.cs
- ObjectDataSourceStatusEventArgs.cs
- OverlappedAsyncResult.cs
- StringExpressionSet.cs
- CollectionConverter.cs
- PathGeometry.cs
- _SSPIWrapper.cs
- ExecutionContext.cs
- DecoderExceptionFallback.cs
- TdsRecordBufferSetter.cs
- HttpListenerPrefixCollection.cs
- XmlFormatExtensionPrefixAttribute.cs
- ViewStateException.cs
- MatchingStyle.cs
- LineServicesCallbacks.cs
- DiscoveryDefaults.cs
- FormsAuthenticationCredentials.cs
- AutoGeneratedFieldProperties.cs
- SslSecurityTokenParameters.cs
- HttpProfileBase.cs
- SettingsProviderCollection.cs
- SymmetricSecurityProtocol.cs
- HTMLTextWriter.cs
- PaintValueEventArgs.cs
- EventArgs.cs
- SelectedDatesCollection.cs
- MSAAWinEventWrap.cs
- ColumnMapCopier.cs
- ButtonBaseDesigner.cs
- EventData.cs
- path.cs
- AssemblyResourceLoader.cs
- Publisher.cs
- ChangePassword.cs
- WorkflowDebuggerSteppingAttribute.cs
- StrokeNodeOperations2.cs
- FilterableAttribute.cs
- MenuStrip.cs
- DocumentSchemaValidator.cs
- ToolStripItemBehavior.cs
- NavigationService.cs
- BamlVersionHeader.cs
- JsonReader.cs
- FamilyTypeface.cs
- PointAnimationClockResource.cs
- InternalsVisibleToAttribute.cs
- SchemaNamespaceManager.cs
- RightsManagementEncryptedStream.cs
- VariantWrapper.cs
- DictionarySectionHandler.cs
- LinqDataSourceInsertEventArgs.cs
- DataGridViewRowDividerDoubleClickEventArgs.cs
- TdsParserHelperClasses.cs
- ConfigPathUtility.cs
- UnsafeNativeMethods.cs
- GeneratedCodeAttribute.cs
- CodeAttributeArgument.cs
- Number.cs
- HttpHandlerActionCollection.cs
- GenericEnumConverter.cs
- SystemIcmpV4Statistics.cs
- CompatibleComparer.cs
- EdmRelationshipNavigationPropertyAttribute.cs
- DoubleIndependentAnimationStorage.cs
- DbProviderSpecificTypePropertyAttribute.cs
- localization.cs
- Command.cs
- SwitchLevelAttribute.cs
- Brush.cs
- CommandHelpers.cs
- ShaderRenderModeValidation.cs
- FlowDocumentPageViewerAutomationPeer.cs
- RootAction.cs
- InvalidFilterCriteriaException.cs
- MappingMetadataHelper.cs
- ExtensionQuery.cs
- TargetControlTypeCache.cs
- XMLDiffLoader.cs
- InstanceDataCollectionCollection.cs
- SafeNativeMethodsMilCoreApi.cs
- MexHttpBindingElement.cs
- WebPartConnectionsEventArgs.cs
- WebPartMenu.cs
- TemplateField.cs
- SqlCommand.cs
- DecoderReplacementFallback.cs
- Point.cs
- SoapSchemaExporter.cs