Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / WinForms / Managed / System / WinForms / PropertyValueChangedEvent.cs / 1305376 / PropertyValueChangedEvent.cs
//------------------------------------------------------------------------------
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
//-----------------------------------------------------------------------------
/*
*/
namespace System.Windows.Forms {
using System.Diagnostics;
using System;
using System.ComponentModel;
///
///
/// The event class that is created when a property
/// in the grid is modified by the user.
///
[System.Runtime.InteropServices.ComVisible(true)]
public class PropertyValueChangedEventArgs : EventArgs {
private readonly GridItem changedItem;
private object oldValue;
///
///
/// Constructor
///
public PropertyValueChangedEventArgs(GridItem changedItem, object oldValue) {
this.changedItem = changedItem;
this.oldValue = oldValue;
}
///
///
/// [To be supplied.]
///
public GridItem ChangedItem {
get {
return changedItem;
}
}
///
///
/// [To be supplied.]
///
public object OldValue {
get {
return oldValue;
}
}
}
}
// File provided for Reference Use Only by Microsoft Corporation (c) 2007.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- FormViewInsertedEventArgs.cs
- Validator.cs
- TreeNodeCollection.cs
- ToolStripHighContrastRenderer.cs
- ProtocolViolationException.cs
- XmlSchemaValidationException.cs
- SqlVersion.cs
- PassportPrincipal.cs
- TextReader.cs
- OdbcPermission.cs
- RoutingTable.cs
- FixedTextBuilder.cs
- Compiler.cs
- HasRunnableWorkflowEvent.cs
- UserNameServiceElement.cs
- NativeRightsManagementAPIsStructures.cs
- XmlUtf8RawTextWriter.cs
- HtmlUtf8RawTextWriter.cs
- TriggerAction.cs
- XmlSchemaInfo.cs
- TypeForwardedToAttribute.cs
- GPPOINTF.cs
- GPRECTF.cs
- lengthconverter.cs
- SqlExpressionNullability.cs
- TableItemStyle.cs
- ConditionValidator.cs
- ProbeDuplex11AsyncResult.cs
- Lease.cs
- BuilderInfo.cs
- ViewRendering.cs
- JsonReaderDelegator.cs
- DataGridViewCellLinkedList.cs
- StyleXamlTreeBuilder.cs
- ToolBar.cs
- PeerReferralPolicy.cs
- DiscoveryVersion.cs
- FixUp.cs
- SecurityException.cs
- CacheChildrenQuery.cs
- ExcludeFromCodeCoverageAttribute.cs
- Run.cs
- Opcode.cs
- PropertyToken.cs
- ReliableChannelBinder.cs
- DataGridViewElement.cs
- QueueSurrogate.cs
- DashStyle.cs
- TextTreeUndoUnit.cs
- ElementProxy.cs
- AnchoredBlock.cs
- SocketManager.cs
- BindingBase.cs
- TraceXPathNavigator.cs
- CommandBindingCollection.cs
- MessageQueuePermissionAttribute.cs
- FileNotFoundException.cs
- AttributeAction.cs
- IntegrationExceptionEventArgs.cs
- InputBuffer.cs
- ISSmlParser.cs
- FtpWebRequest.cs
- ZipIOFileItemStream.cs
- DataServiceSaveChangesEventArgs.cs
- WebExceptionStatus.cs
- SchemaCollectionCompiler.cs
- NativeObjectSecurity.cs
- SerializationInfoEnumerator.cs
- ParenthesizePropertyNameAttribute.cs
- DetailsView.cs
- StaticResourceExtension.cs
- SemanticBasicElement.cs
- StaticFileHandler.cs
- Rect3D.cs
- ErrorLog.cs
- RoleExceptions.cs
- UpdateTracker.cs
- EntityStoreSchemaGenerator.cs
- VisualTarget.cs
- ResetableIterator.cs
- SystemNetHelpers.cs
- EncodingDataItem.cs
- PolyLineSegment.cs
- LogStore.cs
- DeferredReference.cs
- DurationConverter.cs
- SupportingTokenListenerFactory.cs
- EventTrigger.cs
- DelegatingTypeDescriptionProvider.cs
- InputScopeManager.cs
- Vector.cs
- Package.cs
- ServicesUtilities.cs
- BinHexEncoder.cs
- RelationshipSet.cs
- DiscriminatorMap.cs
- SoapHeaderAttribute.cs
- DbConnectionPoolGroup.cs
- ValidationHelper.cs
- ActivityExecutionWorkItem.cs