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
- MiniModule.cs
- XhtmlTextWriter.cs
- BitmapEffect.cs
- manifestimages.cs
- CheckBoxPopupAdapter.cs
- CreateParams.cs
- TypographyProperties.cs
- SafeHandles.cs
- VariantWrapper.cs
- TranslateTransform.cs
- FactoryGenerator.cs
- SafeNativeMethodsMilCoreApi.cs
- ListViewCommandEventArgs.cs
- WindowsAltTab.cs
- XmlReader.cs
- XmlIlVisitor.cs
- StrokeFIndices.cs
- ZoneMembershipCondition.cs
- MD5CryptoServiceProvider.cs
- PropertyGeneratedEventArgs.cs
- XmlCompatibilityReader.cs
- HyperLinkField.cs
- CompressedStack.cs
- ClientProxyGenerator.cs
- ExpressionConverter.cs
- Screen.cs
- MobileListItemCollection.cs
- DataShape.cs
- Matrix3DValueSerializer.cs
- XmlILStorageConverter.cs
- RenderData.cs
- EntityConnectionStringBuilder.cs
- ApplicationGesture.cs
- CalendarDataBindingHandler.cs
- XPathQueryGenerator.cs
- EventProperty.cs
- AuthenticationModuleElement.cs
- DescendantBaseQuery.cs
- TextRangeAdaptor.cs
- InputManager.cs
- DisposableCollectionWrapper.cs
- StorageComplexTypeMapping.cs
- TransformerConfigurationWizardBase.cs
- WindowsSysHeader.cs
- SerialStream.cs
- ProbeDuplex11AsyncResult.cs
- SqlPersonalizationProvider.cs
- ZipIOLocalFileBlock.cs
- categoryentry.cs
- Privilege.cs
- TypeReference.cs
- TableCell.cs
- TextTreeFixupNode.cs
- HttpRuntime.cs
- Rules.cs
- ViewGenerator.cs
- ConfigurationSectionGroup.cs
- ForeignKeyConstraint.cs
- rsa.cs
- VirtualizedItemProviderWrapper.cs
- StorageMappingItemCollection.cs
- BinaryExpression.cs
- ParameterToken.cs
- CalendarDay.cs
- SpecularMaterial.cs
- GlyphRun.cs
- LowerCaseStringConverter.cs
- DocumentXmlWriter.cs
- CatalogPart.cs
- TypeExtensionSerializer.cs
- RequestCacheManager.cs
- MultiSelectRootGridEntry.cs
- MemoryFailPoint.cs
- SettingsBase.cs
- InputDevice.cs
- FlowDocumentReader.cs
- SafeTimerHandle.cs
- ExclusiveHandle.cs
- AliasedExpr.cs
- RadioButtonRenderer.cs
- WebBrowser.cs
- CodeNamespaceImportCollection.cs
- PageSettings.cs
- MissingMemberException.cs
- EdmComplexPropertyAttribute.cs
- DesignTimeParseData.cs
- DrawingState.cs
- AmbientLight.cs
- Point.cs
- Int64Converter.cs
- DynamicPropertyReader.cs
- CuspData.cs
- DispatcherOperation.cs
- ExpressionServices.cs
- FormatConvertedBitmap.cs
- DocumentViewerBase.cs
- PeerCollaboration.cs
- HGlobalSafeHandle.cs
- PropertyPathConverter.cs
- PrintingPermission.cs