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
- UnknownBitmapEncoder.cs
- DataGridViewTopLeftHeaderCell.cs
- ManualResetEventSlim.cs
- GetImportedCardRequest.cs
- ControlUtil.cs
- TagMapCollection.cs
- ServicePointManager.cs
- EndOfStreamException.cs
- SqlSupersetValidator.cs
- TextDocumentView.cs
- DiagnosticsConfiguration.cs
- ReverseQueryOperator.cs
- OleDbConnection.cs
- DispatcherObject.cs
- MonikerHelper.cs
- MD5CryptoServiceProvider.cs
- DefaultPrintController.cs
- ImageFormat.cs
- FlowLayoutPanel.cs
- SystemDropShadowChrome.cs
- OnOperation.cs
- MarkupWriter.cs
- TransformerConfigurationWizardBase.cs
- Variant.cs
- lengthconverter.cs
- XmlSchemaSimpleContentExtension.cs
- ModuleElement.cs
- OpacityConverter.cs
- HybridWebProxyFinder.cs
- StateElementCollection.cs
- XMLSyntaxException.cs
- GlyphRunDrawing.cs
- AuthStoreRoleProvider.cs
- Int64Storage.cs
- GeometryModel3D.cs
- MethodImplAttribute.cs
- DrawingContextWalker.cs
- SafeRightsManagementSessionHandle.cs
- ResXFileRef.cs
- MatrixValueSerializer.cs
- DataSvcMapFileSerializer.cs
- ControlBuilder.cs
- AddressHeaderCollectionElement.cs
- TemplatedWizardStep.cs
- StreamProxy.cs
- NativeMethods.cs
- WarningException.cs
- ChildTable.cs
- SaveFileDialog.cs
- SafeArrayRankMismatchException.cs
- KerberosRequestorSecurityToken.cs
- CodeConditionStatement.cs
- Section.cs
- GPRECTF.cs
- ConfigurationProperty.cs
- TextServicesDisplayAttributePropertyRanges.cs
- TreeViewHitTestInfo.cs
- DefaultAsyncDataDispatcher.cs
- DataServiceClientException.cs
- SmiEventStream.cs
- DataConnectionHelper.cs
- DataControlImageButton.cs
- ZipIOExtraFieldElement.cs
- DataGridCaption.cs
- EmptyEnumerator.cs
- DeploymentExceptionMapper.cs
- ErasingStroke.cs
- WebSysDisplayNameAttribute.cs
- DelayedRegex.cs
- DynamicRendererThreadManager.cs
- ToolBarOverflowPanel.cs
- XamlParser.cs
- TokenBasedSet.cs
- SQLUtility.cs
- ArithmeticException.cs
- SendingRequestEventArgs.cs
- FormatConvertedBitmap.cs
- CollectionViewGroupRoot.cs
- RootNamespaceAttribute.cs
- FixedSOMTableRow.cs
- ParentQuery.cs
- Application.cs
- StylusDevice.cs
- AesCryptoServiceProvider.cs
- OutOfProcStateClientManager.cs
- InputManager.cs
- EnumerationRangeValidationUtil.cs
- ListItemParagraph.cs
- LogStore.cs
- SystemWebSectionGroup.cs
- XmlDataSourceView.cs
- SkinBuilder.cs
- DataGridHeaderBorder.cs
- TypeReference.cs
- HotSpot.cs
- ObjectDataSourceEventArgs.cs
- CryptoProvider.cs
- OracleString.cs
- SHA1.cs
- SmtpSpecifiedPickupDirectoryElement.cs