Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / wpf / src / Framework / System / Windows / Controls / SelectionChangedEventArgs.cs / 1305600 / 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.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- Accessible.cs
- DesignerCategoryAttribute.cs
- AesCryptoServiceProvider.cs
- HttpCacheVaryByContentEncodings.cs
- PerformanceCounterManager.cs
- BindingMemberInfo.cs
- SvcMapFileLoader.cs
- TypeInfo.cs
- ByteRangeDownloader.cs
- XamlTypeMapperSchemaContext.cs
- ButtonFlatAdapter.cs
- HttpWebRequest.cs
- sitestring.cs
- NominalTypeEliminator.cs
- ValidationPropertyAttribute.cs
- BinaryObjectWriter.cs
- ViewGenerator.cs
- PublisherMembershipCondition.cs
- SafeProcessHandle.cs
- UpDownEvent.cs
- ElementProxy.cs
- NetStream.cs
- Membership.cs
- DecimalStorage.cs
- BackEase.cs
- ConstructorNeedsTagAttribute.cs
- ListBindingHelper.cs
- XNodeValidator.cs
- EventLevel.cs
- BindingMemberInfo.cs
- CfgRule.cs
- JpegBitmapDecoder.cs
- Property.cs
- EditingCoordinator.cs
- WS2007HttpBindingElement.cs
- BevelBitmapEffect.cs
- QuadTree.cs
- XPathNavigatorKeyComparer.cs
- MsmqIntegrationInputMessage.cs
- EventListener.cs
- HotSpot.cs
- ZipIOExtraFieldPaddingElement.cs
- MetadataHelper.cs
- TreeNodeBindingDepthConverter.cs
- ADMembershipProvider.cs
- BindingList.cs
- AddingNewEventArgs.cs
- SemanticBasicElement.cs
- TextTreeTextBlock.cs
- AutomationElement.cs
- EntitySet.cs
- RichTextBoxAutomationPeer.cs
- ConsoleKeyInfo.cs
- XPathMessageFilterElementComparer.cs
- Membership.cs
- ProtocolState.cs
- DataGridViewSelectedRowCollection.cs
- SerializerProvider.cs
- TextParagraphProperties.cs
- DebugView.cs
- RepeaterItem.cs
- AccessDataSource.cs
- RawMouseInputReport.cs
- UrlAuthFailedErrorFormatter.cs
- EUCJPEncoding.cs
- ImageInfo.cs
- SqlReorderer.cs
- SmiRecordBuffer.cs
- FixedSOMTableRow.cs
- GradientBrush.cs
- BuildProvider.cs
- HostedElements.cs
- StringTraceRecord.cs
- FixedLineResult.cs
- followingquery.cs
- ChangesetResponse.cs
- ContextMarshalException.cs
- UndoManager.cs
- FilterElement.cs
- MemberDescriptor.cs
- ProxyAttribute.cs
- BindValidator.cs
- EditorPart.cs
- errorpatternmatcher.cs
- AsyncOperationContext.cs
- SubclassTypeValidator.cs
- JoinCqlBlock.cs
- ListParagraph.cs
- TripleDESCryptoServiceProvider.cs
- HandlerFactoryWrapper.cs
- BuildProvider.cs
- GeneralTransform3DGroup.cs
- ToolStripSystemRenderer.cs
- NativeMethods.cs
- WorkflowOperationAsyncResult.cs
- SplitContainer.cs
- filewebresponse.cs
- RuntimeWrappedException.cs
- WriteLineDesigner.xaml.cs
- Missing.cs