Code:
/ FX-1434 / FX-1434 / 1.0 / untmp / whidbey / REDBITS / ndp / fx / src / CompMod / System / ComponentModel / Design / ComponentChangingEvent.cs / 1 / ComponentChangingEvent.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- /* */ namespace System.ComponentModel.Design { using Microsoft.Win32; using System; using System.ComponentModel; using System.Diagnostics; using System.Security.Permissions; ////// [HostProtection(SharedState = true)] [System.Runtime.InteropServices.ComVisible(true)] [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Name="FullTrust")] public sealed class ComponentChangingEventArgs : EventArgs { private object component; private MemberDescriptor member; ///Provides data for the ///event. /// public object Component { get { return component; } } ////// Gets or sets the component that is being changed or that is the parent container of the member being changed. /// ////// public MemberDescriptor Member { get { return member; } } ////// Gets or sets the member of the component that is about to be changed. /// ////// public ComponentChangingEventArgs(object component, MemberDescriptor member) { this.component = component; this.member = member; } } }/// Initializes a new instance of the ///class. ///
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- HyperlinkAutomationPeer.cs
- FontDriver.cs
- ElementAction.cs
- WebPartTracker.cs
- CustomTypeDescriptor.cs
- Vector3DIndependentAnimationStorage.cs
- FrameworkContextData.cs
- TriggerAction.cs
- UnsafeNativeMethods.cs
- Sql8ExpressionRewriter.cs
- PassportAuthenticationEventArgs.cs
- StateItem.cs
- StandardOleMarshalObject.cs
- _NestedMultipleAsyncResult.cs
- ToolboxItemSnapLineBehavior.cs
- ControlEvent.cs
- SessionStateContainer.cs
- BamlLocalizabilityResolver.cs
- EntityDataSourceWrapperPropertyDescriptor.cs
- TypeConverterHelper.cs
- ProjectionPlan.cs
- FragmentQuery.cs
- HttpResponseHeader.cs
- TimeIntervalCollection.cs
- RepeatBehaviorConverter.cs
- RelationshipManager.cs
- DataRelationPropertyDescriptor.cs
- ScrollChrome.cs
- RectAnimationUsingKeyFrames.cs
- Trigger.cs
- ADRoleFactoryConfiguration.cs
- StrongName.cs
- ToolStripRendererSwitcher.cs
- DataServiceProviderWrapper.cs
- ScrollChrome.cs
- EntityCommandCompilationException.cs
- CfgParser.cs
- EdmFunctionAttribute.cs
- OleDbMetaDataFactory.cs
- DBCSCodePageEncoding.cs
- CatalogZone.cs
- Drawing.cs
- processwaithandle.cs
- DataPointer.cs
- SQLGuidStorage.cs
- WebPartsPersonalizationAuthorization.cs
- Axis.cs
- COM2ComponentEditor.cs
- TextServicesLoader.cs
- StructuredTypeEmitter.cs
- MasterPageCodeDomTreeGenerator.cs
- PersonalizationStateQuery.cs
- SafeViewOfFileHandle.cs
- AsyncOperationContext.cs
- DataGridViewCellMouseEventArgs.cs
- QueryContinueDragEvent.cs
- SystemTcpStatistics.cs
- ProcessModelInfo.cs
- newinstructionaction.cs
- Vector3DCollectionConverter.cs
- AsyncOperation.cs
- XPathNodeIterator.cs
- FolderLevelBuildProviderCollection.cs
- Rule.cs
- MarkupObject.cs
- Storyboard.cs
- DynamicResourceExtension.cs
- UIElementIsland.cs
- FolderBrowserDialogDesigner.cs
- StickyNoteAnnotations.cs
- HtmlInputCheckBox.cs
- DebugHandleTracker.cs
- COM2IVsPerPropertyBrowsingHandler.cs
- TreeNodeBinding.cs
- CompositeTypefaceMetrics.cs
- Page.cs
- WebPartConnectionsCloseVerb.cs
- ColorAnimationUsingKeyFrames.cs
- BeginStoryboard.cs
- BuildDependencySet.cs
- DesignSurfaceEvent.cs
- Script.cs
- BamlTreeMap.cs
- ComponentSerializationService.cs
- XPathAxisIterator.cs
- _ScatterGatherBuffers.cs
- SecureStringHasher.cs
- ZoneIdentityPermission.cs
- SchemaImporterExtensionElement.cs
- GridViewDeleteEventArgs.cs
- JoinQueryOperator.cs
- XmlCharCheckingWriter.cs
- PhysicalAddress.cs
- SqlServer2KCompatibilityCheck.cs
- UrlAuthorizationModule.cs
- ScrollBarAutomationPeer.cs
- WindowsSspiNegotiation.cs
- TextBoxAutomationPeer.cs
- XmlElementList.cs
- QueryHandler.cs