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
- WorkflowInstance.cs
- InvalidWMPVersionException.cs
- Lease.cs
- AuthenticationSection.cs
- LinqDataSourceDisposeEventArgs.cs
- ContentFilePart.cs
- SqlDataSourceStatusEventArgs.cs
- ClickablePoint.cs
- GlyphingCache.cs
- SiteMapNodeItem.cs
- ToolStripDropDownClosedEventArgs.cs
- ContextMenu.cs
- AutomationFocusChangedEventArgs.cs
- SQLBinary.cs
- HttpProfileGroupBase.cs
- ToolStripPanelRow.cs
- DynamicDocumentPaginator.cs
- DataControlImageButton.cs
- OperationCanceledException.cs
- OrderedHashRepartitionEnumerator.cs
- DataGridViewCellCollection.cs
- ImageField.cs
- _RequestCacheProtocol.cs
- WinEventTracker.cs
- AdditionalEntityFunctions.cs
- MultiplexingDispatchMessageFormatter.cs
- EdmFunction.cs
- PerfCounterSection.cs
- ValueTypeFieldReference.cs
- TransportDefaults.cs
- MessageEnumerator.cs
- EncodingTable.cs
- safesecurityhelperavalon.cs
- ReachDocumentReferenceCollectionSerializerAsync.cs
- GPPOINT.cs
- DrawingCollection.cs
- XmlNullResolver.cs
- MD5HashHelper.cs
- TypeInitializationException.cs
- ToolStripDropDown.cs
- XamlInterfaces.cs
- CacheChildrenQuery.cs
- xmlsaver.cs
- TypedAsyncResult.cs
- DecimalConstantAttribute.cs
- BamlLocalizabilityResolver.cs
- TextServicesManager.cs
- SafeNativeMethods.cs
- LinkClickEvent.cs
- BitmapEffectDrawingContent.cs
- StyleCollection.cs
- AsymmetricCryptoHandle.cs
- MouseOverProperty.cs
- ReadWriteSpinLock.cs
- SymLanguageVendor.cs
- EnumValAlphaComparer.cs
- CodeDOMProvider.cs
- WindowsRichEdit.cs
- ValidationManager.cs
- XmlBindingWorker.cs
- TitleStyle.cs
- DoubleUtil.cs
- DropShadowEffect.cs
- sqlstateclientmanager.cs
- WebControl.cs
- ChtmlCommandAdapter.cs
- FileUtil.cs
- ListSortDescriptionCollection.cs
- Comparer.cs
- DBCommandBuilder.cs
- CoreSwitches.cs
- DuplicateWaitObjectException.cs
- RenderDataDrawingContext.cs
- HttpRuntime.cs
- ChannelServices.cs
- ProxyWebPart.cs
- ImagingCache.cs
- FixedPageStructure.cs
- ObjectDataSourceMethodEventArgs.cs
- TouchPoint.cs
- SettingsPropertyIsReadOnlyException.cs
- OleDbStruct.cs
- TransformedBitmap.cs
- BindingListCollectionView.cs
- BuildProvider.cs
- MailMessage.cs
- MemberDomainMap.cs
- SystemResourceHost.cs
- CounterSetInstance.cs
- ClientFormsIdentity.cs
- DBCommandBuilder.cs
- Opcode.cs
- UserInitiatedNavigationPermission.cs
- StubHelpers.cs
- GACMembershipCondition.cs
- UInt32.cs
- FileDialog_Vista.cs
- XmlSerializer.cs
- LinqTreeNodeEvaluator.cs
- CanonicalFontFamilyReference.cs