Code:
/ Dotnetfx_Win7_3.5.1 / Dotnetfx_Win7_3.5.1 / 3.5.1 / DEVDIV / depot / DevDiv / releases / Orcas / NetFXw7 / wpf / src / Framework / System / Windows / Controls / Primitives / MultiSelector.cs / 1 / MultiSelector.cs
//---------------------------------------------------------------------------- // // Copyright (C) Microsoft Corporation. All rights reserved. // //--------------------------------------------------------------------------- using System; using System.ComponentModel; using System.Collections; using System.Collections.ObjectModel; namespace System.Windows.Controls.Primitives { ////// Extends the Selector class by adding a multi selection support. /// public abstract class MultiSelector : Selector { ////// Returns whether or not multiple items can be selected /// protected bool CanSelectMultipleItems { get { return base.CanSelectMultiple; } set { base.CanSelectMultiple = value; } } ////// Returns the collection of currently Selected Items. /// Note, this is not the set of items that are pending selection. /// Exceptions: /// While IsUpdatingSelectedItems, using the indexer, Insert, and RemoveAt will throw InvalidOperationExceptions. /// If CanSelectMultiple is false then Adding one item to SelectedItems is valid but adding items after that is invalid and will result in an InvalidOperationException. /// [Bindable(true), Category("Appearance"), DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)] public IList SelectedItems { get { return SelectedItemsImpl; } } #region BulkSelection ////// Starts a new selection transaction, setting IsUpdatingSelectedItems to true. /// Exceptions: InvalidOperationException if IsUpdatingSelectedItems is true. /// protected void BeginUpdateSelectedItems() { ((SelectedItemCollection)SelectedItems).BeginUpdateSelectedItems(); } ////// Commits a selection transaction, populating or removing items from the SelectedItems collection and resets IsUpdatingSelectedItems to false. /// Exceptions: InvalidOperationException if IsUpdatingSelectedItems is false /// protected void EndUpdateSelectedItems() { ((SelectedItemCollection)SelectedItems).EndUpdateSelectedItems(); } ////// Returns true if SelectedItems is being updated using the deferred update behavior. /// Otherwise, it is false and updating SelectedItems is immediate. /// Calling BeginUpdateSelectedItems will set this value to become true. /// Calling EndUpdateSelectedItems will cause the deferred selections to be submitted and this value to become false. /// protected bool IsUpdatingSelectedItems { get { return ((SelectedItemCollection)SelectedItems).IsUpdatingSelectedItems; } } ////// Select all the items /// Exceptions: InvalidOperationExcpetion if CanSelectMultipleItems is false /// public void SelectAll() { if (CanSelectMultipleItems) { SelectAllImpl(); } else { throw new NotSupportedException(SR.Get(SRID.MultiSelectorSelectAll)); } } ////// Clears all of the selected items. /// public void UnselectAll() { UnselectAllImpl(); } #endregion BulkSelection } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved. //---------------------------------------------------------------------------- // // Copyright (C) Microsoft Corporation. All rights reserved. // //--------------------------------------------------------------------------- using System; using System.ComponentModel; using System.Collections; using System.Collections.ObjectModel; namespace System.Windows.Controls.Primitives { ////// Extends the Selector class by adding a multi selection support. /// public abstract class MultiSelector : Selector { ////// Returns whether or not multiple items can be selected /// protected bool CanSelectMultipleItems { get { return base.CanSelectMultiple; } set { base.CanSelectMultiple = value; } } ////// Returns the collection of currently Selected Items. /// Note, this is not the set of items that are pending selection. /// Exceptions: /// While IsUpdatingSelectedItems, using the indexer, Insert, and RemoveAt will throw InvalidOperationExceptions. /// If CanSelectMultiple is false then Adding one item to SelectedItems is valid but adding items after that is invalid and will result in an InvalidOperationException. /// [Bindable(true), Category("Appearance"), DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)] public IList SelectedItems { get { return SelectedItemsImpl; } } #region BulkSelection ////// Starts a new selection transaction, setting IsUpdatingSelectedItems to true. /// Exceptions: InvalidOperationException if IsUpdatingSelectedItems is true. /// protected void BeginUpdateSelectedItems() { ((SelectedItemCollection)SelectedItems).BeginUpdateSelectedItems(); } ////// Commits a selection transaction, populating or removing items from the SelectedItems collection and resets IsUpdatingSelectedItems to false. /// Exceptions: InvalidOperationException if IsUpdatingSelectedItems is false /// protected void EndUpdateSelectedItems() { ((SelectedItemCollection)SelectedItems).EndUpdateSelectedItems(); } ////// Returns true if SelectedItems is being updated using the deferred update behavior. /// Otherwise, it is false and updating SelectedItems is immediate. /// Calling BeginUpdateSelectedItems will set this value to become true. /// Calling EndUpdateSelectedItems will cause the deferred selections to be submitted and this value to become false. /// protected bool IsUpdatingSelectedItems { get { return ((SelectedItemCollection)SelectedItems).IsUpdatingSelectedItems; } } ////// Select all the items /// Exceptions: InvalidOperationExcpetion if CanSelectMultipleItems is false /// public void SelectAll() { if (CanSelectMultipleItems) { SelectAllImpl(); } else { throw new NotSupportedException(SR.Get(SRID.MultiSelectorSelectAll)); } } ////// Clears all of the selected items. /// public void UnselectAll() { UnselectAllImpl(); } #endregion BulkSelection } } // 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
- LOSFormatter.cs
- EntryIndex.cs
- DataSourceConverter.cs
- MemoryMappedFileSecurity.cs
- UnaryExpression.cs
- FilterableAttribute.cs
- XmlIncludeAttribute.cs
- RectAnimationBase.cs
- ProbeMatchesApril2005.cs
- NumberSubstitution.cs
- KeyEvent.cs
- BlurEffect.cs
- ItemContainerPattern.cs
- DetailsViewDeleteEventArgs.cs
- ListViewCancelEventArgs.cs
- GACIdentityPermission.cs
- FrameworkContentElement.cs
- RegionInfo.cs
- QueryTask.cs
- RegexNode.cs
- DesignerCommandAdapter.cs
- PersonalizationStateInfoCollection.cs
- AnimatedTypeHelpers.cs
- XmlSchemaInclude.cs
- NamespaceList.cs
- ShaderEffect.cs
- BinaryObjectInfo.cs
- ListViewItemCollectionEditor.cs
- Formatter.cs
- RelationshipConverter.cs
- StyleXamlParser.cs
- CodeExpressionCollection.cs
- Base64Encoding.cs
- XsltSettings.cs
- CodeGotoStatement.cs
- TypeConverterHelper.cs
- HTTPNotFoundHandler.cs
- DrawingGroup.cs
- ActivityExecutorOperation.cs
- ProfileEventArgs.cs
- NamedPipeTransportManager.cs
- HtmlControl.cs
- ElementMarkupObject.cs
- DataListItemEventArgs.cs
- SortedList.cs
- VScrollProperties.cs
- URIFormatException.cs
- DisplayNameAttribute.cs
- DependencyPropertyKey.cs
- XslUrlEditor.cs
- ProfilePropertyMetadata.cs
- ProjectionPlanCompiler.cs
- ListViewItemEventArgs.cs
- SignHashRequest.cs
- InheritedPropertyChangedEventArgs.cs
- ProfilePropertyNameValidator.cs
- WebPartConnectionsEventArgs.cs
- ToolStripOverflow.cs
- BitmapPalettes.cs
- SingleKeyFrameCollection.cs
- XmlSchemaNotation.cs
- Positioning.cs
- Stacktrace.cs
- XPathDocumentIterator.cs
- ExpandCollapseProviderWrapper.cs
- CodeEntryPointMethod.cs
- DispatcherFrame.cs
- OpenTypeLayoutCache.cs
- ObjectIDGenerator.cs
- Content.cs
- Overlapped.cs
- UInt64Converter.cs
- DynamicDocumentPaginator.cs
- AssemblyContextControlItem.cs
- ProjectionPlan.cs
- ConnectionConsumerAttribute.cs
- CapabilitiesUse.cs
- HwndAppCommandInputProvider.cs
- AssemblyCache.cs
- DataGridViewColumnCollection.cs
- TypeBuilder.cs
- MemberMaps.cs
- OutputCacheEntry.cs
- RewritingSimplifier.cs
- SqlRetyper.cs
- DetailsViewRowCollection.cs
- FactoryId.cs
- DefaultClaimSet.cs
- XmlNamespaceMapping.cs
- CompressedStack.cs
- SelectionPatternIdentifiers.cs
- DrawingContextWalker.cs
- RadioButtonPopupAdapter.cs
- ExpressionBuilder.cs
- LogArchiveSnapshot.cs
- TranslateTransform3D.cs
- FormsAuthenticationTicket.cs
- TrackingServices.cs
- DataSourceProvider.cs
- KeyGesture.cs