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
- DataKey.cs
- followingquery.cs
- PropertyGeneratedEventArgs.cs
- HtmlMeta.cs
- CorrelationManager.cs
- LineBreak.cs
- CodeParameterDeclarationExpressionCollection.cs
- XmlSchemaAttributeGroup.cs
- SpellCheck.cs
- PropertyTabAttribute.cs
- externdll.cs
- WindowsRebar.cs
- KeyGestureValueSerializer.cs
- DiagnosticTraceSource.cs
- StorageMappingItemLoader.cs
- ComboBoxItem.cs
- EntityDataSourceUtil.cs
- ThrowHelper.cs
- TextPointerBase.cs
- RealizationDrawingContextWalker.cs
- NavigationService.cs
- ThreadLocal.cs
- EmptyControlCollection.cs
- GrowingArray.cs
- PointLight.cs
- Utility.cs
- PropertyToken.cs
- SymbolResolver.cs
- ObjectPropertyMapping.cs
- StructuredTypeEmitter.cs
- InkCanvas.cs
- Scalars.cs
- CapiHashAlgorithm.cs
- StreamInfo.cs
- xml.cs
- EditorZoneDesigner.cs
- ExplicitDiscriminatorMap.cs
- DictationGrammar.cs
- TableAdapterManagerHelper.cs
- Char.cs
- ElementHostPropertyMap.cs
- ServerValidateEventArgs.cs
- EntityRecordInfo.cs
- Binding.cs
- EnumerableRowCollection.cs
- TrackPoint.cs
- VisualBasicSettings.cs
- InputQueue.cs
- CodeGroup.cs
- ResponseBodyWriter.cs
- QueryRewriter.cs
- GridLengthConverter.cs
- BuildProviderUtils.cs
- EditingScopeUndoUnit.cs
- CustomAttributeBuilder.cs
- AuthenticationService.cs
- ContainerVisual.cs
- CallbackTimeoutsElement.cs
- SHA256Cng.cs
- DoubleAnimation.cs
- LinqDataSourceEditData.cs
- TextEditorMouse.cs
- ListViewItemSelectionChangedEvent.cs
- HandlerBase.cs
- BatchParser.cs
- MemberInitExpression.cs
- XmlRawWriter.cs
- WebPartDescription.cs
- EdmItemError.cs
- Filter.cs
- EntityClientCacheKey.cs
- ChangeTracker.cs
- MembershipUser.cs
- DataBindingCollection.cs
- Cursor.cs
- WebCategoryAttribute.cs
- RegexTree.cs
- DataGridViewRowCollection.cs
- XmlNavigatorStack.cs
- CompressedStack.cs
- SecurityAccessDeniedException.cs
- TagElement.cs
- WebUtil.cs
- CreateParams.cs
- LogRestartAreaEnumerator.cs
- SystemWebSectionGroup.cs
- SynchronousReceiveElement.cs
- EventEntry.cs
- SubqueryRules.cs
- BaseTemplateParser.cs
- ResourceManager.cs
- __Error.cs
- EnumUnknown.cs
- Stylesheet.cs
- InfoCardRSAPKCS1KeyExchangeDeformatter.cs
- ColumnPropertiesGroup.cs
- _AutoWebProxyScriptHelper.cs
- GetCertificateRequest.cs
- EntitySqlQueryState.cs
- MetadataConversionError.cs