Code:
/ DotNET / DotNET / 8.0 / untmp / whidbey / REDBITS / ndp / fx / src / WinForms / Managed / System / WinForms / SelectedGridItemChangedEvent.cs / 1 / 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. // Copyright (c) Microsoft Corporation. All rights reserved.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- ResourceExpression.cs
- SettingsProviderCollection.cs
- DataRecordObjectView.cs
- TextPointer.cs
- HitTestResult.cs
- PreDigestedSignedInfo.cs
- AbandonedMutexException.cs
- SqlTypeSystemProvider.cs
- SecurityState.cs
- ServiceProviders.cs
- DataAccessException.cs
- columnmapkeybuilder.cs
- QueueProcessor.cs
- InfoCardProofToken.cs
- SchemaElementDecl.cs
- XmlIlTypeHelper.cs
- EdmFunctionAttribute.cs
- AspCompat.cs
- OneOfElement.cs
- AutoGeneratedFieldProperties.cs
- AttachmentService.cs
- TypeDescriptionProvider.cs
- SingleObjectCollection.cs
- CheckBoxPopupAdapter.cs
- ReadOnlyTernaryTree.cs
- CanExecuteRoutedEventArgs.cs
- Recipient.cs
- ValidatedControlConverter.cs
- TogglePattern.cs
- EventItfInfo.cs
- StrongNameKeyPair.cs
- AlternateView.cs
- TextContainerChangeEventArgs.cs
- SecureStringHasher.cs
- SamlAudienceRestrictionCondition.cs
- ResXResourceSet.cs
- ServiceDeploymentInfo.cs
- GridViewItemAutomationPeer.cs
- PixelFormat.cs
- SchemaImporter.cs
- TextTreeObjectNode.cs
- HitTestFilterBehavior.cs
- Knowncolors.cs
- HandledMouseEvent.cs
- X509IssuerSerialKeyIdentifierClause.cs
- MetafileHeaderEmf.cs
- Win32.cs
- TreeNodeConverter.cs
- UpdatePanelTriggerCollection.cs
- Viewport3DAutomationPeer.cs
- XmlSchemaComplexContentExtension.cs
- MessageSecurityVersionConverter.cs
- ToolTipAutomationPeer.cs
- OdbcCommand.cs
- RadioButtonRenderer.cs
- DesignTimeTemplateParser.cs
- TreeBuilderXamlTranslator.cs
- EntityClassGenerator.cs
- FirstMatchCodeGroup.cs
- IpcServerChannel.cs
- Ppl.cs
- RichTextBoxConstants.cs
- SqlUtil.cs
- PropertyContainer.cs
- SwitchElementsCollection.cs
- OciEnlistContext.cs
- TypedTableGenerator.cs
- Update.cs
- ExpressionsCollectionEditor.cs
- SourceChangedEventArgs.cs
- MethodToken.cs
- RotateTransform.cs
- WindowsStartMenu.cs
- ListMarkerLine.cs
- XmlStringTable.cs
- SoapAttributeOverrides.cs
- UriSectionReader.cs
- CallTemplateAction.cs
- LinkGrep.cs
- SafeCryptoHandles.cs
- DataContract.cs
- CharStorage.cs
- NameValueConfigurationCollection.cs
- Control.cs
- MimeFormatExtensions.cs
- HttpCacheVary.cs
- DetailsViewPagerRow.cs
- _ListenerAsyncResult.cs
- WpfXamlMember.cs
- BrushConverter.cs
- BindingMemberInfo.cs
- VectorAnimation.cs
- DataGridViewCellStyleContentChangedEventArgs.cs
- KeyedCollection.cs
- QueryResponse.cs
- Font.cs
- DocumentCollection.cs
- UrlMappingsSection.cs
- StylusEventArgs.cs
- _CacheStreams.cs