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
- SqlDataSource.cs
- Soap12ServerProtocol.cs
- DeploymentSection.cs
- SecurityRuntime.cs
- XmlAnyAttributeAttribute.cs
- BasicViewGenerator.cs
- CompositeTypefaceMetrics.cs
- SafeBitVector32.cs
- CreateUserWizard.cs
- filewebresponse.cs
- ObjectDataSourceChooseTypePanel.cs
- DataListItemCollection.cs
- IgnoreFlushAndCloseStream.cs
- LogicalChannelCollection.cs
- DataGridParentRows.cs
- HyperLinkDataBindingHandler.cs
- TagPrefixAttribute.cs
- ContextDataSourceView.cs
- NetSectionGroup.cs
- CommandManager.cs
- TreeWalker.cs
- AtomContentProperty.cs
- RuleSettings.cs
- SolidBrush.cs
- EmbeddedMailObjectsCollection.cs
- ClientSettingsProvider.cs
- ServiceHttpHandlerFactory.cs
- OleDbParameterCollection.cs
- Button.cs
- LeaseManager.cs
- NavigatorInput.cs
- DataConnectionHelper.cs
- XhtmlBasicPhoneCallAdapter.cs
- WebPartRestoreVerb.cs
- ValidationErrorEventArgs.cs
- SamlAttribute.cs
- Mutex.cs
- SqlClientWrapperSmiStreamChars.cs
- Automation.cs
- ImportCatalogPart.cs
- SHA512Managed.cs
- CollectionChangedEventManager.cs
- ActivationService.cs
- DataTableNameHandler.cs
- Propagator.Evaluator.cs
- OdbcEnvironmentHandle.cs
- XmlDataCollection.cs
- GridItemPattern.cs
- ZipArchive.cs
- InplaceBitmapMetadataWriter.cs
- X509Extension.cs
- TableLayout.cs
- MediaCommands.cs
- MemberNameValidator.cs
- EntityType.cs
- ResolvedKeyFrameEntry.cs
- ReadOnlyCollectionBase.cs
- EnumConverter.cs
- Events.cs
- TCPClient.cs
- FormViewUpdateEventArgs.cs
- TrackingParticipant.cs
- DateTimeUtil.cs
- NavigationEventArgs.cs
- SpeechDetectedEventArgs.cs
- Semaphore.cs
- BinarySerializer.cs
- ResourceProperty.cs
- GatewayIPAddressInformationCollection.cs
- storepermission.cs
- EventBuilder.cs
- SqlClientWrapperSmiStreamChars.cs
- XmlStreamedByteStreamReader.cs
- _HeaderInfoTable.cs
- XmlQueryRuntime.cs
- HandlerMappingMemo.cs
- ToolboxComponentsCreatedEventArgs.cs
- sqlstateclientmanager.cs
- PathNode.cs
- SqlFactory.cs
- _FixedSizeReader.cs
- HttpModuleAction.cs
- WebBrowserBase.cs
- UriSection.cs
- HttpCookie.cs
- AlphaSortedEnumConverter.cs
- WindowsEditBox.cs
- safex509handles.cs
- BaseUriHelper.cs
- XmlUrlResolver.cs
- XPathNavigator.cs
- XmlSchemaExporter.cs
- GenericTransactionFlowAttribute.cs
- SchemaElement.cs
- Triangle.cs
- IProvider.cs
- CredentialCache.cs
- AutomationPeer.cs
- EntityCodeGenerator.cs
- UriParserTemplates.cs