Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / CompMod / System / ComponentModel / Design / ComponentChangingEvent.cs / 1305376 / 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; } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007./// Initializes a new instance of the ///class. ///
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- ClickablePoint.cs
- GetIsBrowserClientRequest.cs
- InfocardInteractiveChannelInitializer.cs
- EventLogPermissionAttribute.cs
- PersonalizableTypeEntry.cs
- CodeEventReferenceExpression.cs
- EntityDataSourceStatementEditorForm.cs
- RichTextBox.cs
- ListView.cs
- RelationshipNavigation.cs
- SelectionGlyphBase.cs
- TextDecorationCollectionConverter.cs
- CollectionViewGroup.cs
- VirtualizingPanel.cs
- NotifyInputEventArgs.cs
- SliderAutomationPeer.cs
- SqlStatistics.cs
- ExpressionEditorAttribute.cs
- EventSourceCreationData.cs
- SchemaTableOptionalColumn.cs
- ListViewCommandEventArgs.cs
- DiffuseMaterial.cs
- TransformProviderWrapper.cs
- UnsafeNativeMethodsCLR.cs
- SmiEventSink_Default.cs
- ContextStaticAttribute.cs
- EtwTrace.cs
- LoginUtil.cs
- XmlSchemaComplexType.cs
- SystemEvents.cs
- ValidationEventArgs.cs
- SafeHandles.cs
- EditCommandColumn.cs
- DispatcherSynchronizationContext.cs
- BitmapEffectGeneralTransform.cs
- printdlgexmarshaler.cs
- MultipartContentParser.cs
- KeyPressEvent.cs
- RegexBoyerMoore.cs
- Clipboard.cs
- WebPartZoneCollection.cs
- DataSvcMapFileSerializer.cs
- SortDescriptionCollection.cs
- HttpListenerException.cs
- PopOutPanel.cs
- ArcSegment.cs
- ItemCheckedEvent.cs
- SiteMapNodeCollection.cs
- SerializationFieldInfo.cs
- WindowsGraphicsWrapper.cs
- RSAPKCS1SignatureFormatter.cs
- SurrogateSelector.cs
- VisualCollection.cs
- CodeGen.cs
- StringUtil.cs
- Int16KeyFrameCollection.cs
- BitmapEffectInputData.cs
- SimpleHandlerBuildProvider.cs
- TemplateField.cs
- CommonDialog.cs
- WebPartHeaderCloseVerb.cs
- DependentList.cs
- RepeatButton.cs
- FacetDescriptionElement.cs
- PeerTransportCredentialType.cs
- ProtocolsConfiguration.cs
- ResourceExpressionBuilder.cs
- HttpClientCredentialType.cs
- ClientRoleProvider.cs
- HttpHandlerAction.cs
- ScriptReferenceBase.cs
- ProfilePropertySettings.cs
- HttpServerUtilityWrapper.cs
- IndexedGlyphRun.cs
- TTSEngineProxy.cs
- SystemException.cs
- StaticSiteMapProvider.cs
- FileLoadException.cs
- UInt16Converter.cs
- ClientUtils.cs
- OracleBoolean.cs
- View.cs
- IChannel.cs
- PropertyCondition.cs
- Utils.cs
- PackageRelationshipCollection.cs
- CompilerScope.cs
- ObjectDataSourceEventArgs.cs
- ImageCodecInfo.cs
- ColorConvertedBitmapExtension.cs
- Hashtable.cs
- NamespaceDisplay.xaml.cs
- ContractMapping.cs
- WindowsPrincipal.cs
- ResourceWriter.cs
- ContentPlaceHolder.cs
- ToolboxItemFilterAttribute.cs
- RepeatButton.cs
- ObjectDisposedException.cs
- InvalidOleVariantTypeException.cs