Code:
/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / Orcas / SP / wpf / src / Framework / System / Windows / Controls / SelectionChangedEventArgs.cs / 1 / SelectionChangedEventArgs.cs
using System.ComponentModel; using System.Collections; using System.Collections.Generic; using System.Windows.Threading; using System.Windows.Data; using System.Windows.Automation; using System.Windows.Automation.Provider; using MS.Utility; using System.Windows; using System; using System.Diagnostics; namespace System.Windows.Controls { ////// The delegate type for handling a selection changed event /// public delegate void SelectionChangedEventHandler( object sender, SelectionChangedEventArgs e); ////// The inputs to a selection changed event handler /// public class SelectionChangedEventArgs : RoutedEventArgs { #region Constructors ////// The constructor for selection changed args /// /// The event ID for the event about to fire -- should probably be Selector.SelectionChangedEvent /// The items that were unselected during this event /// The items that were selected during this event public SelectionChangedEventArgs( RoutedEvent id, IList removedItems, IList addedItems) { if (id == null) throw new ArgumentNullException("id"); if (removedItems == null) throw new ArgumentNullException("removedItems"); if (addedItems == null) throw new ArgumentNullException("addedItems"); RoutedEvent = id; _removedItems = new object[removedItems.Count]; removedItems.CopyTo(_removedItems, 0); _addedItems = new object[addedItems.Count]; addedItems.CopyTo(_addedItems, 0); } internal SelectionChangedEventArgs(IList removedItems, IList addedItems) : this(System.Windows.Controls.Primitives.Selector.SelectionChangedEvent, removedItems, addedItems) { } #endregion #region Public Properties ////// An IList containing the items that were unselected during this event /// public IList RemovedItems { get { return _removedItems; } } ////// An IList containing the items that were selected during this event /// public IList AddedItems { get { return _addedItems; } } #endregion #region Protected Methods ////// This method is used to perform the proper type casting in order to /// call the type-safe SelectionChangedEventHandler delegate for the SelectionChangedEvent event. /// /// The handler to invoke. /// The current object along the event's route. protected override void InvokeEventHandler(Delegate genericHandler, object genericTarget) { SelectionChangedEventHandler handler = (SelectionChangedEventHandler)genericHandler; handler(genericTarget, this); } #endregion #region Data private object[] _addedItems; private object[] _removedItems; #endregion } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved. using System.ComponentModel; using System.Collections; using System.Collections.Generic; using System.Windows.Threading; using System.Windows.Data; using System.Windows.Automation; using System.Windows.Automation.Provider; using MS.Utility; using System.Windows; using System; using System.Diagnostics; namespace System.Windows.Controls { ////// The delegate type for handling a selection changed event /// public delegate void SelectionChangedEventHandler( object sender, SelectionChangedEventArgs e); ////// The inputs to a selection changed event handler /// public class SelectionChangedEventArgs : RoutedEventArgs { #region Constructors ////// The constructor for selection changed args /// /// The event ID for the event about to fire -- should probably be Selector.SelectionChangedEvent /// The items that were unselected during this event /// The items that were selected during this event public SelectionChangedEventArgs( RoutedEvent id, IList removedItems, IList addedItems) { if (id == null) throw new ArgumentNullException("id"); if (removedItems == null) throw new ArgumentNullException("removedItems"); if (addedItems == null) throw new ArgumentNullException("addedItems"); RoutedEvent = id; _removedItems = new object[removedItems.Count]; removedItems.CopyTo(_removedItems, 0); _addedItems = new object[addedItems.Count]; addedItems.CopyTo(_addedItems, 0); } internal SelectionChangedEventArgs(IList removedItems, IList addedItems) : this(System.Windows.Controls.Primitives.Selector.SelectionChangedEvent, removedItems, addedItems) { } #endregion #region Public Properties ////// An IList containing the items that were unselected during this event /// public IList RemovedItems { get { return _removedItems; } } ////// An IList containing the items that were selected during this event /// public IList AddedItems { get { return _addedItems; } } #endregion #region Protected Methods ////// This method is used to perform the proper type casting in order to /// call the type-safe SelectionChangedEventHandler delegate for the SelectionChangedEvent event. /// /// The handler to invoke. /// The current object along the event's route. protected override void InvokeEventHandler(Delegate genericHandler, object genericTarget) { SelectionChangedEventHandler handler = (SelectionChangedEventHandler)genericHandler; handler(genericTarget, this); } #endregion #region Data private object[] _addedItems; private object[] _removedItems; #endregion } } // 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
- XmlSchemaSimpleType.cs
- Model3DGroup.cs
- ClosableStream.cs
- MarginCollapsingState.cs
- XamlSerializer.cs
- MasterPageCodeDomTreeGenerator.cs
- StringInfo.cs
- ProcessHostConfigUtils.cs
- SettingsPropertyNotFoundException.cs
- CompilationUtil.cs
- VectorValueSerializer.cs
- XPathNode.cs
- XmlDataSourceView.cs
- XmlEnumAttribute.cs
- DataGridViewToolTip.cs
- HebrewCalendar.cs
- SurrogateEncoder.cs
- HttpRequestWrapper.cs
- ListViewTableRow.cs
- SQLDateTime.cs
- ObjectParameterCollection.cs
- CancelEventArgs.cs
- PathSegmentCollection.cs
- UniqueContractNameValidationBehavior.cs
- JsonReader.cs
- OptimizedTemplateContent.cs
- FormatConvertedBitmap.cs
- CodeMemberMethod.cs
- WebReferencesBuildProvider.cs
- ObjectConverter.cs
- TextProperties.cs
- MdiWindowListStrip.cs
- cookiecontainer.cs
- ListControl.cs
- printdlgexmarshaler.cs
- Misc.cs
- GenericsInstances.cs
- HttpConfigurationSystem.cs
- NegatedCellConstant.cs
- MDIWindowDialog.cs
- ByteKeyFrameCollection.cs
- MyContact.cs
- XmlMemberMapping.cs
- FlowLayoutSettings.cs
- Group.cs
- EntityDataSourceColumn.cs
- DetailsViewRowCollection.cs
- SoapExtension.cs
- PropertyManager.cs
- StateWorkerRequest.cs
- BaseContextMenu.cs
- SafeSecurityHandles.cs
- OperationCanceledException.cs
- DataGridColumnCollection.cs
- Journaling.cs
- RelationshipDetailsRow.cs
- CodeSpit.cs
- Marshal.cs
- IfJoinedCondition.cs
- FixedSOMLineCollection.cs
- Button.cs
- ChtmlPageAdapter.cs
- Pts.cs
- PageEventArgs.cs
- SqlStream.cs
- ImageMapEventArgs.cs
- ContainerUtilities.cs
- DataGridViewIntLinkedList.cs
- PreservationFileWriter.cs
- GorillaCodec.cs
- CounterCreationDataCollection.cs
- ProviderException.cs
- dbenumerator.cs
- BitmapVisualManager.cs
- AttachedAnnotationChangedEventArgs.cs
- CommandField.cs
- ReadOnlyCollectionBuilder.cs
- ServiceOperationParameter.cs
- PageCatalogPartDesigner.cs
- PostBackTrigger.cs
- DataServiceStreamResponse.cs
- TypeDelegator.cs
- AssociationSetMetadata.cs
- DomainLiteralReader.cs
- GridViewRowPresenterBase.cs
- COM2EnumConverter.cs
- SinglePageViewer.cs
- XmlChildEnumerator.cs
- WebServiceClientProxyGenerator.cs
- OdbcCommand.cs
- XmlC14NWriter.cs
- Quad.cs
- BatchWriter.cs
- PrimitiveSchema.cs
- NumberFormatInfo.cs
- RSAOAEPKeyExchangeDeformatter.cs
- Message.cs
- NativeMethodsCLR.cs
- Timeline.cs
- SqlTypesSchemaImporter.cs