Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / wpf / src / Framework / MS / Internal / Ink / ElementsClipboardData.cs / 1305600 / ElementsClipboardData.cs
//---------------------------------------------------------------------------- // // File: ElementsClipboardData.cs // // Description: // A base class which can convert the clipboard data from/to FrameworkElement array // // Features: // // History: // 11/17/2004 waynezen: Created // // Copyright (C) 2001 by Microsoft Corporation. All rights reserved. // //--------------------------------------------------------------------------- using System; using System.Collections; using System.Collections.Generic; using System.Windows; using System.Windows.Controls; namespace MS.Internal.Ink { internal abstract class ElementsClipboardData : ClipboardData { //------------------------------------------------------------------------------- // // Constructors // //------------------------------------------------------------------------------- #region Constructors // The default constructor internal ElementsClipboardData() { } // The constructor which takes a FrameworkElement array. internal ElementsClipboardData(UIElement[] elements) { if ( elements != null ) { ElementList = new List(elements); } } #endregion Constructors //-------------------------------------------------------------------------------- // // Internal Properties // //------------------------------------------------------------------------------- #region Internal Properties // Gets the element array. internal List Elements { get { if ( ElementList != null ) { return _elementList; } else { return new List (); } } } #endregion Internal Properties //-------------------------------------------------------------------------------- // // Protected Properties // //-------------------------------------------------------------------------------- #region Protected Properties // Sets/Gets the internal array list protected List ElementList { get { return _elementList; } set { _elementList = value; } } #endregion Protected Properties //------------------------------------------------------------------------------- // // Private Fields // //-------------------------------------------------------------------------------- #region Private Fields private List _elementList; #endregion Private Fields } } // 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
- GetKeyedHashRequest.cs
- XmlDocumentFieldSchema.cs
- SocketException.cs
- DocumentReferenceCollection.cs
- QueueAccessMode.cs
- SQLSingleStorage.cs
- ObjectToken.cs
- MemberPath.cs
- _ChunkParse.cs
- COMException.cs
- CharacterBuffer.cs
- MultiPropertyDescriptorGridEntry.cs
- tabpagecollectioneditor.cs
- PageClientProxyGenerator.cs
- ImmutableObjectAttribute.cs
- PropertyChangingEventArgs.cs
- ParallelLoopState.cs
- TableProviderWrapper.cs
- HwndSourceParameters.cs
- SoapSchemaExporter.cs
- FieldNameLookup.cs
- PersistenceTask.cs
- QilTernary.cs
- TagPrefixAttribute.cs
- ParserContext.cs
- DateTimeOffset.cs
- SerialPinChanges.cs
- AutoGeneratedFieldProperties.cs
- CacheVirtualItemsEvent.cs
- DataGridPageChangedEventArgs.cs
- SqlDataSourceView.cs
- CreateCardRequest.cs
- ReadOnlyHierarchicalDataSource.cs
- SubqueryRules.cs
- SoapServerProtocol.cs
- Freezable.cs
- FixedBufferAttribute.cs
- SpeechRecognizer.cs
- CriticalFinalizerObject.cs
- ObjRef.cs
- SqlDataSourceDesigner.cs
- BuildManagerHost.cs
- PartitionedStreamMerger.cs
- ArraySortHelper.cs
- FormViewPageEventArgs.cs
- GroupByExpressionRewriter.cs
- PageContentAsyncResult.cs
- DataSourceUtil.cs
- DateTimeFormatInfo.cs
- CodeExpressionStatement.cs
- ScriptingWebServicesSectionGroup.cs
- HttpApplication.cs
- SoapSchemaImporter.cs
- MetadataItemEmitter.cs
- ModuleBuilder.cs
- CounterNameConverter.cs
- ToolStripSeparator.cs
- ContextStaticAttribute.cs
- WebPartZone.cs
- ModelTreeEnumerator.cs
- GroupLabel.cs
- TransactionScopeDesigner.cs
- ImageListUtils.cs
- ListDictionaryInternal.cs
- ThreadAttributes.cs
- List.cs
- ScrollEventArgs.cs
- _Events.cs
- DescriptionCreator.cs
- CompilerGeneratedAttribute.cs
- RTLAwareMessageBox.cs
- diagnosticsswitches.cs
- BitmapEffectGeneralTransform.cs
- IndexExpression.cs
- RawTextInputReport.cs
- MouseButton.cs
- CodeValidator.cs
- FloatUtil.cs
- ProviderConnectionPoint.cs
- BinaryNode.cs
- DbDataSourceEnumerator.cs
- XPathAxisIterator.cs
- XPathExpr.cs
- XmlValidatingReaderImpl.cs
- PipelineComponent.cs
- ExternalException.cs
- SafeThreadHandle.cs
- ColorContext.cs
- RangeValueProviderWrapper.cs
- DataPagerField.cs
- MatrixStack.cs
- DateTimeFormat.cs
- HwndMouseInputProvider.cs
- GenericAuthenticationEventArgs.cs
- ForEachAction.cs
- TextOutput.cs
- DetailsViewRow.cs
- FlowPanelDesigner.cs
- WindowsListBox.cs
- QilStrConcatenator.cs