Code:
/ DotNET / DotNET / 8.0 / untmp / whidbey / REDBITS / ndp / fx / src / WinForms / Managed / System / WinForms / PropertyValueChangedEvent.cs / 1 / 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; } ////// /// 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. // Copyright (c) Microsoft Corporation. All rights reserved.[To be supplied.] ///
Link Menu
This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- WebPartConnectionsDisconnectVerb.cs
- Predicate.cs
- ISAPIApplicationHost.cs
- _TransmitFileOverlappedAsyncResult.cs
- __ConsoleStream.cs
- KeyConverter.cs
- Transform.cs
- ComplusTypeValidator.cs
- OdbcConnectionOpen.cs
- XmlILAnnotation.cs
- ProjectionRewriter.cs
- EncodingStreamWrapper.cs
- UnsafeNativeMethods.cs
- StorageEndPropertyMapping.cs
- CodeExpressionCollection.cs
- StringPropertyBuilder.cs
- InvokeCompletedEventArgs.cs
- CompressionTracing.cs
- EditingCommands.cs
- SoapObjectReader.cs
- ProgressChangedEventArgs.cs
- SQLConvert.cs
- DummyDataSource.cs
- ProxyWebPart.cs
- SqlUtil.cs
- MenuItemStyleCollection.cs
- XmlUtil.cs
- Registry.cs
- ListItem.cs
- ScaleTransform.cs
- COM2TypeInfoProcessor.cs
- IResourceProvider.cs
- IsolatedStorageFileStream.cs
- AsymmetricKeyExchangeDeformatter.cs
- ClickablePoint.cs
- Panel.cs
- WebCategoryAttribute.cs
- ComNativeDescriptor.cs
- HttpRequest.cs
- ScriptReferenceEventArgs.cs
- MsmqProcessProtocolHandler.cs
- CssClassPropertyAttribute.cs
- FixedStringLookup.cs
- InheritanceContextHelper.cs
- XamlFilter.cs
- KeySplineConverter.cs
- RecommendedAsConfigurableAttribute.cs
- DBSchemaTable.cs
- SqlBulkCopyColumnMappingCollection.cs
- InfoCardXmlSerializer.cs
- WindowClosedEventArgs.cs
- RuleSetDialog.cs
- StatusBar.cs
- ResourceKey.cs
- CodeConstructor.cs
- AnnotationAuthorChangedEventArgs.cs
- ItemCollection.cs
- StringResourceManager.cs
- JournalEntry.cs
- CodeLinePragma.cs
- CreateParams.cs
- SoapSchemaImporter.cs
- BamlStream.cs
- PropertyManager.cs
- FrameworkPropertyMetadata.cs
- CommonDialog.cs
- CodeMemberField.cs
- ParameterReplacerVisitor.cs
- PngBitmapDecoder.cs
- FtpRequestCacheValidator.cs
- TextTreeUndo.cs
- ConstructorBuilder.cs
- QueryOutputWriterV1.cs
- PrimarySelectionGlyph.cs
- _LoggingObject.cs
- ParseChildrenAsPropertiesAttribute.cs
- TextEditorSelection.cs
- __FastResourceComparer.cs
- ScalarConstant.cs
- PersianCalendar.cs
- SQLCharsStorage.cs
- HtmlTextArea.cs
- RawKeyboardInputReport.cs
- Section.cs
- LZCodec.cs
- DockPattern.cs
- AddressAlreadyInUseException.cs
- ReadOnlyCollectionBase.cs
- ProxyAttribute.cs
- DesignerTransaction.cs
- MissingMemberException.cs
- ZoneMembershipCondition.cs
- TypeEnumerableViewSchema.cs
- ModuleElement.cs
- ServiceAuthorizationElement.cs
- ReadOnlyHierarchicalDataSource.cs
- WebScriptEndpointElement.cs
- SizeIndependentAnimationStorage.cs
- Mapping.cs
- WindowsUserNameSecurityTokenAuthenticator.cs