Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / whidbey / NetFxQFE / 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. // //----------------------------------------------------------------------------- /* */ 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
- GuidTagList.cs
- Window.cs
- ProfileGroupSettings.cs
- XmlnsCache.cs
- ExpressionParser.cs
- PartitionResolver.cs
- CompositeDataBoundControl.cs
- TextInfo.cs
- PageThemeParser.cs
- AnnotationService.cs
- ResourceManagerWrapper.cs
- DetailsViewCommandEventArgs.cs
- OleDbPermission.cs
- PrintPreviewControl.cs
- CodeActivityMetadata.cs
- XdrBuilder.cs
- InputLangChangeEvent.cs
- webclient.cs
- DbDataAdapter.cs
- UshortList2.cs
- MailHeaderInfo.cs
- AsyncOperation.cs
- EdgeProfileValidation.cs
- AuthenticationService.cs
- InProcStateClientManager.cs
- SubpageParagraph.cs
- ReturnEventArgs.cs
- ReflectionPermission.cs
- PlanCompiler.cs
- DefaultExpressionVisitor.cs
- NetworkAddressChange.cs
- XsltOutput.cs
- Cursor.cs
- MenuCommand.cs
- QilGeneratorEnv.cs
- DataTablePropertyDescriptor.cs
- PersianCalendar.cs
- GlobalEventManager.cs
- MsdtcClusterUtils.cs
- QilGeneratorEnv.cs
- HostingEnvironment.cs
- LinkedList.cs
- DispatcherSynchronizationContext.cs
- SessionPageStateSection.cs
- AuthorizationRuleCollection.cs
- ImportFileRequest.cs
- Authorization.cs
- DocumentGridPage.cs
- SqlRetyper.cs
- latinshape.cs
- RoleService.cs
- SoapReflectionImporter.cs
- SettingsSection.cs
- ListViewTableCell.cs
- ProtocolsConfiguration.cs
- basemetadatamappingvisitor.cs
- EditorPartCollection.cs
- EdgeProfileValidation.cs
- KnownBoxes.cs
- PersistNameAttribute.cs
- InputProcessorProfiles.cs
- ChannelEndpointElement.cs
- BaseWebProxyFinder.cs
- PolicyManager.cs
- CryptoStream.cs
- SoapAttributeAttribute.cs
- StrokeNodeData.cs
- Int32Converter.cs
- EndOfStreamException.cs
- PTManager.cs
- TypeLoadException.cs
- Subtree.cs
- DifferencingCollection.cs
- PrinterUnitConvert.cs
- TableLayoutRowStyleCollection.cs
- DebugView.cs
- Row.cs
- WindowsScrollBar.cs
- DataDocumentXPathNavigator.cs
- MultiTargetingUtil.cs
- WeakEventManager.cs
- QueryOutputWriter.cs
- DelegatedStream.cs
- StructuredProperty.cs
- AudioFormatConverter.cs
- RandomNumberGenerator.cs
- CleanUpVirtualizedItemEventArgs.cs
- SingleObjectCollection.cs
- SqlCaseSimplifier.cs
- Translator.cs
- SqlCommandBuilder.cs
- EntityType.cs
- Model3DGroup.cs
- PlatformNotSupportedException.cs
- FrameworkObject.cs
- WinFormsComponentEditor.cs
- PlainXmlSerializer.cs
- XmlWrappingReader.cs
- UrlPath.cs
- ReflectionUtil.cs