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

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- XmlQueryRuntime.cs
- DataGridItemCollection.cs
- ExtentJoinTreeNode.cs
- Constraint.cs
- RSAPKCS1SignatureDeformatter.cs
- NotSupportedException.cs
- ArrayMergeHelper.cs
- TypeInfo.cs
- CheckoutException.cs
- VisualTreeUtils.cs
- PerformanceCounterLib.cs
- UserInitiatedRoutedEventPermission.cs
- ObjectQuery_EntitySqlExtensions.cs
- DiscriminatorMap.cs
- StateMachineHistory.cs
- User.cs
- FunctionCommandText.cs
- ObjectSecurity.cs
- StylusPointProperty.cs
- filewebrequest.cs
- ComboBox.cs
- Item.cs
- DataBoundControlHelper.cs
- SecurityVersion.cs
- DataSpaceManager.cs
- ToolStripSeparator.cs
- CompatibleIComparer.cs
- ToolStripSystemRenderer.cs
- XmlSerializableReader.cs
- UriScheme.cs
- UTF32Encoding.cs
- Exceptions.cs
- UserMapPath.cs
- DataGridViewColumnCollection.cs
- NetworkCredential.cs
- ConfigLoader.cs
- Debug.cs
- LocalBuilder.cs
- ConfigurationSettings.cs
- OleDbConnection.cs
- CellParaClient.cs
- CodeAttributeDeclaration.cs
- DoubleAnimationClockResource.cs
- NetCodeGroup.cs
- EventMappingSettings.cs
- WebContext.cs
- XamlWrappingReader.cs
- Pens.cs
- SafeNativeMethods.cs
- RuleSet.cs
- OleDbError.cs
- SqlBulkCopy.cs
- EntityDataSourceWrapper.cs
- CodeNamespaceImport.cs
- TextTreeRootNode.cs
- ControlUtil.cs
- FullTextState.cs
- DirectionalLight.cs
- DataGridViewRowConverter.cs
- CaseInsensitiveHashCodeProvider.cs
- LineServicesRun.cs
- SwitchElementsCollection.cs
- RepeatBehavior.cs
- WindowsListViewGroup.cs
- SqlClientWrapperSmiStream.cs
- IProvider.cs
- ExtendedPropertyCollection.cs
- WsdlHelpGeneratorElement.cs
- LogRestartAreaEnumerator.cs
- CommunicationObjectManager.cs
- DbDataSourceEnumerator.cs
- Metadata.cs
- SaveFileDialog.cs
- CompilerResults.cs
- EditingMode.cs
- WebReference.cs
- AssemblyAttributes.cs
- SqlServer2KCompatibilityAnnotation.cs
- ProviderIncompatibleException.cs
- FontEmbeddingManager.cs
- EntityContainer.cs
- EntityTransaction.cs
- DataGridViewUtilities.cs
- PanelStyle.cs
- ImageMap.cs
- DocumentViewerHelper.cs
- ServicePointManagerElement.cs
- DataBoundControlAdapter.cs
- HttpChannelHelper.cs
- SessionStateContainer.cs
- XamlTreeBuilder.cs
- SQLChars.cs
- XMLSchema.cs
- Messages.cs
- WindowsRichEdit.cs
- _PooledStream.cs
- DataSourceSerializationException.cs
- CodeNamespaceCollection.cs
- FormsAuthenticationConfiguration.cs
- StringValidatorAttribute.cs