Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / WinForms / Managed / System / WinForms / SelectedGridItemChangedEvent.cs / 1305376 / SelectedGridItemChangedEvent.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 the selected GridItem in the PropertyGrid is changed by the user. /// public class SelectedGridItemChangedEventArgs : EventArgs { private GridItem oldSelection; private GridItem newSelection; ////// /// Constructs a SelectedGridItemChangedEventArgs object. /// public SelectedGridItemChangedEventArgs(GridItem oldSel, GridItem newSel) { this.oldSelection = oldSel; this.newSelection = newSel; } ////// /// The newly selected GridItem object /// public GridItem NewSelection { get { return this.newSelection; } } ////// /// The previously selected GridItem object. This can be null. /// public GridItem OldSelection { get { return this.oldSelection; } } } } // 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
- Internal.cs
- RefreshEventArgs.cs
- ObjectStateEntryOriginalDbUpdatableDataRecord.cs
- ProgressPage.cs
- FrameworkTextComposition.cs
- NonBatchDirectoryCompiler.cs
- GZipDecoder.cs
- HierarchicalDataSourceControl.cs
- EFColumnProvider.cs
- RenderData.cs
- safex509handles.cs
- Activator.cs
- Queue.cs
- NameTable.cs
- DataObjectFieldAttribute.cs
- DbSourceParameterCollection.cs
- GZipDecoder.cs
- SR.Designer.cs
- NameSpaceExtractor.cs
- CustomSignedXml.cs
- HttpServerVarsCollection.cs
- DynamicValidator.cs
- BCLDebug.cs
- MultiPartWriter.cs
- SafeNativeMemoryHandle.cs
- ConfigurationSectionGroup.cs
- DataPagerFieldCollection.cs
- Camera.cs
- StyleCollection.cs
- ProcessThreadCollection.cs
- AccessDataSourceView.cs
- SerializationTrace.cs
- SqlExpressionNullability.cs
- _LoggingObject.cs
- EditingCommands.cs
- EntityDesignerDataSourceView.cs
- CompiledXpathExpr.cs
- XmlTextWriter.cs
- X509CertificateTokenFactoryCredential.cs
- SQLSingle.cs
- OperationResponse.cs
- DateTimeOffsetConverter.cs
- RequestNavigateEventArgs.cs
- XmlCharCheckingWriter.cs
- RelationshipManager.cs
- ObjectPropertyMapping.cs
- StringDictionary.cs
- FormatterConverter.cs
- ProfessionalColorTable.cs
- EntityReference.cs
- GeneralTransform3D.cs
- FontSourceCollection.cs
- SubpageParaClient.cs
- SiteMapNode.cs
- BindableTemplateBuilder.cs
- FlowLayout.cs
- WpfMemberInvoker.cs
- AutoCompleteStringCollection.cs
- TdsParserHelperClasses.cs
- MeshGeometry3D.cs
- WindowsListViewItemCheckBox.cs
- ObjRef.cs
- WebPartCatalogAddVerb.cs
- ZipIOModeEnforcingStream.cs
- HttpResponseInternalWrapper.cs
- ReadWriteObjectLock.cs
- RawStylusInputCustomDataList.cs
- RecordBuilder.cs
- ChangesetResponse.cs
- StickyNoteAnnotations.cs
- WebPartCloseVerb.cs
- HttpCookieCollection.cs
- EmptyWithCancelationCheckWorkItem.cs
- ArglessEventHandlerProxy.cs
- OptimisticConcurrencyException.cs
- ConfigurationManagerInternal.cs
- CrossAppDomainChannel.cs
- DataDocumentXPathNavigator.cs
- SQLInt16Storage.cs
- Pts.cs
- XmlSerializerNamespaces.cs
- SimpleWebHandlerParser.cs
- DynamicUpdateCommand.cs
- SettingsBase.cs
- ExtensionFile.cs
- CommonRemoteMemoryBlock.cs
- CommandLibraryHelper.cs
- ThreadExceptionEvent.cs
- ToolStripItemEventArgs.cs
- LookupBindingPropertiesAttribute.cs
- ColorConvertedBitmap.cs
- DateTimeConstantAttribute.cs
- JsonDataContract.cs
- RelationshipFixer.cs
- StorageEntityTypeMapping.cs
- HttpResponseInternalWrapper.cs
- BulletChrome.cs
- LineMetrics.cs
- CookieParameter.cs
- TypeListConverter.cs