Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / CompMod / System / ComponentModel / Design / ComponentChangedEvent.cs / 1305376 / ComponentChangedEvent.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 ComponentChangedEventArgs : EventArgs { private object component; private MemberDescriptor member; private object oldValue; private object newValue; ///Provides data for the ///event. /// public object Component { get { return component; } } ////// Gets or sets the component that is the cause of this event. /// ////// public MemberDescriptor Member { get { return member; } } ////// Gets or sets the member that is about to change. /// ////// public object NewValue { get { return newValue; } } ////// Gets or sets the new value of the changed member. /// ////// public object OldValue { get { return oldValue; } } ////// Gets or sets the old value of the changed member. /// ////// public ComponentChangedEventArgs(object component, MemberDescriptor member, object oldValue, object newValue) { this.component = component; this.member = member; this.oldValue = oldValue; this.newValue = newValue; } } } // 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
- StatusBarPanel.cs
- ThicknessAnimationBase.cs
- IsolationInterop.cs
- Activator.cs
- CommonGetThemePartSize.cs
- XmlAttribute.cs
- CoreSwitches.cs
- PageAsyncTask.cs
- _SecureChannel.cs
- TextBoxBase.cs
- OpacityConverter.cs
- _SslStream.cs
- XmlObjectSerializerReadContext.cs
- _FtpControlStream.cs
- RelationshipManager.cs
- TcpProcessProtocolHandler.cs
- FreeFormDesigner.cs
- EndpointAddressMessageFilterTable.cs
- StringTraceRecord.cs
- ConnectionManagementSection.cs
- XPathDocument.cs
- diagnosticsswitches.cs
- AsynchronousChannelMergeEnumerator.cs
- ByValueEqualityComparer.cs
- XmlDataLoader.cs
- FixedElement.cs
- DateTimeOffset.cs
- TextAnchor.cs
- TextOptionsInternal.cs
- DefaultParameterValueAttribute.cs
- XmlSchemaComplexType.cs
- TextAutomationPeer.cs
- ProcessModelInfo.cs
- NetworkInformationException.cs
- MultiDataTrigger.cs
- StringConverter.cs
- AttributeCollection.cs
- EventRoute.cs
- BitmapFrame.cs
- EndpointDiscoveryMetadata.cs
- CodePrimitiveExpression.cs
- SvcMapFile.cs
- LinqDataSourceHelper.cs
- SerializationHelper.cs
- DBProviderConfigurationHandler.cs
- cookiecontainer.cs
- InputReportEventArgs.cs
- SecuritySessionSecurityTokenProvider.cs
- MenuItem.cs
- TdsParser.cs
- Canvas.cs
- dataobject.cs
- SchemaImporterExtensionElementCollection.cs
- RSAProtectedConfigurationProvider.cs
- ManipulationStartedEventArgs.cs
- ControlValuePropertyAttribute.cs
- Process.cs
- SystemColors.cs
- MinMaxParagraphWidth.cs
- ColumnMapProcessor.cs
- ScrollChrome.cs
- DodSequenceMerge.cs
- UpdatePanelTrigger.cs
- LayoutDump.cs
- ComponentFactoryHelpers.cs
- Image.cs
- ConsoleKeyInfo.cs
- LayoutEngine.cs
- TextParagraph.cs
- StringUtil.cs
- Base64Stream.cs
- dbdatarecord.cs
- PointLight.cs
- InfoCardMasterKey.cs
- FixedSOMPage.cs
- EncodingDataItem.cs
- AutoResizedEvent.cs
- CollectionViewGroupInternal.cs
- DataGridHeadersVisibilityToVisibilityConverter.cs
- FloatUtil.cs
- Encoder.cs
- Base64Encoder.cs
- TextTrailingWordEllipsis.cs
- RequiredAttributeAttribute.cs
- ScalarOps.cs
- MatrixCamera.cs
- LinearKeyFrames.cs
- ResourceProperty.cs
- ResolveNameEventArgs.cs
- BaseProcessProtocolHandler.cs
- FilterUserControlBase.cs
- CryptoHelper.cs
- XmlAutoDetectWriter.cs
- OrCondition.cs
- ObjectAnimationUsingKeyFrames.cs
- CompoundFileDeflateTransform.cs
- CalendarButton.cs
- SqlConnectionPoolProviderInfo.cs
- __TransparentProxy.cs
- NullableIntMinMaxAggregationOperator.cs