Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / wpf / src / Framework / MS / Internal / Ink / TextClipboardData.cs / 1305600 / TextClipboardData.cs
//---------------------------------------------------------------------------- // // File: TextClipboardData.cs // // Description: // A base class which can copy a unicode text to the IDataObject. // It also can get the unicode text from the IDataObject and create a corresponding textbox. // // 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; using System.Windows.Markup; using System.Text; namespace MS.Internal.Ink { internal class TextClipboardData : ElementsClipboardData { //------------------------------------------------------------------------------- // // Constructors // //------------------------------------------------------------------------------- #region Constructors // The default constructor internal TextClipboardData() : this(null) {} // The constructor with a string as argument internal TextClipboardData(string text) { _text = text; } #endregion Constructors // Checks if the data can be pasted. internal override bool CanPaste(IDataObject dataObject) { return ( dataObject.GetDataPresent(DataFormats.UnicodeText, false) || dataObject.GetDataPresent(DataFormats.Text, false) || dataObject.GetDataPresent(DataFormats.OemText, false) ); } //-------------------------------------------------------------------------------- // // Protected Methods // //------------------------------------------------------------------------------- #region Protected Methods // Checks if the data can be copied. protected override bool CanCopy() { return !string.IsNullOrEmpty(_text); } // Copy the text to the IDataObject protected override void DoCopy(IDataObject dataObject) { // Put the text to the clipboard dataObject.SetData(DataFormats.UnicodeText, _text, true); } // Retrieves the text from the IDataObject instance. // Then create a textbox with the text data. protected override void DoPaste(IDataObject dataObject) { ElementList = new List(); // Get the string from the data object. string text = dataObject.GetData(DataFormats.UnicodeText, true) as string; if ( String.IsNullOrEmpty(text) ) { // OemText can be retrieved as CF_TEXT. text = dataObject.GetData(DataFormats.Text, true) as string; } if ( !String.IsNullOrEmpty(text) ) { // Now, create a text box and set the text to it. TextBox textBox = new TextBox(); textBox.Text = text; textBox.TextWrapping = TextWrapping.Wrap; // Add the textbox to the internal array list. ElementList.Add(textBox); } } #endregion Protected Methods //-------------------------------------------------------------------------------- // // Private Fields // //-------------------------------------------------------------------------------- #region Private Fields private string _text; #endregion Private Fields } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved. //---------------------------------------------------------------------------- // // File: TextClipboardData.cs // // Description: // A base class which can copy a unicode text to the IDataObject. // It also can get the unicode text from the IDataObject and create a corresponding textbox. // // 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; using System.Windows.Markup; using System.Text; namespace MS.Internal.Ink { internal class TextClipboardData : ElementsClipboardData { //------------------------------------------------------------------------------- // // Constructors // //------------------------------------------------------------------------------- #region Constructors // The default constructor internal TextClipboardData() : this(null) {} // The constructor with a string as argument internal TextClipboardData(string text) { _text = text; } #endregion Constructors // Checks if the data can be pasted. internal override bool CanPaste(IDataObject dataObject) { return ( dataObject.GetDataPresent(DataFormats.UnicodeText, false) || dataObject.GetDataPresent(DataFormats.Text, false) || dataObject.GetDataPresent(DataFormats.OemText, false) ); } //-------------------------------------------------------------------------------- // // Protected Methods // //------------------------------------------------------------------------------- #region Protected Methods // Checks if the data can be copied. protected override bool CanCopy() { return !string.IsNullOrEmpty(_text); } // Copy the text to the IDataObject protected override void DoCopy(IDataObject dataObject) { // Put the text to the clipboard dataObject.SetData(DataFormats.UnicodeText, _text, true); } // Retrieves the text from the IDataObject instance. // Then create a textbox with the text data. protected override void DoPaste(IDataObject dataObject) { ElementList = new List (); // Get the string from the data object. string text = dataObject.GetData(DataFormats.UnicodeText, true) as string; if ( String.IsNullOrEmpty(text) ) { // OemText can be retrieved as CF_TEXT. text = dataObject.GetData(DataFormats.Text, true) as string; } if ( !String.IsNullOrEmpty(text) ) { // Now, create a text box and set the text to it. TextBox textBox = new TextBox(); textBox.Text = text; textBox.TextWrapping = TextWrapping.Wrap; // Add the textbox to the internal array list. ElementList.Add(textBox); } } #endregion Protected Methods //-------------------------------------------------------------------------------- // // Private Fields // //-------------------------------------------------------------------------------- #region Private Fields private string _text; #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
- Int64Storage.cs
- SortQueryOperator.cs
- Utils.cs
- AnimationLayer.cs
- StylusEditingBehavior.cs
- SettingsSavedEventArgs.cs
- TemplateControlCodeDomTreeGenerator.cs
- FunctionUpdateCommand.cs
- BindingValueChangedEventArgs.cs
- XmlSchemaAppInfo.cs
- ToolStripControlHost.cs
- ListControl.cs
- Separator.cs
- LowerCaseStringConverter.cs
- RevocationPoint.cs
- DataViewSettingCollection.cs
- AbsoluteQuery.cs
- InternalsVisibleToAttribute.cs
- CompositeTypefaceMetrics.cs
- ServiceMetadataExtension.cs
- PeerPresenceInfo.cs
- ViewStateException.cs
- IdnElement.cs
- TableLayoutStyleCollection.cs
- OperationCanceledException.cs
- PerformanceCounterManager.cs
- QueryCacheKey.cs
- MimePart.cs
- HttpRequest.cs
- PngBitmapEncoder.cs
- HexParser.cs
- Pair.cs
- CollectionsUtil.cs
- UpdateTranslator.cs
- ToolStripPanelRenderEventArgs.cs
- IOException.cs
- KeyMatchBuilder.cs
- PublisherIdentityPermission.cs
- StaticExtensionConverter.cs
- BindingMemberInfo.cs
- DataTableReaderListener.cs
- CommentAction.cs
- SettingsAttributeDictionary.cs
- EntityDataSourceReferenceGroup.cs
- HwndHostAutomationPeer.cs
- ComponentCache.cs
- XmlDocumentSerializer.cs
- PersonalizationState.cs
- ProgressBar.cs
- AQNBuilder.cs
- TextEditorLists.cs
- PrivilegedConfigurationManager.cs
- CursorInteropHelper.cs
- DeferredTextReference.cs
- DecimalMinMaxAggregationOperator.cs
- ConfigurationSectionGroup.cs
- SecurityUtils.cs
- ProxyHelper.cs
- DataColumn.cs
- ExternalException.cs
- ExpressionBindingCollection.cs
- IIS7UserPrincipal.cs
- Match.cs
- ExportFileRequest.cs
- ZipIOLocalFileHeader.cs
- Marshal.cs
- DataGridViewRowHeightInfoPushedEventArgs.cs
- SecurityElement.cs
- DbCommandTree.cs
- MatrixUtil.cs
- SoapFormatter.cs
- DataGridRow.cs
- UpdateTranslator.cs
- XNodeSchemaApplier.cs
- XmlNodeReader.cs
- remotingproxy.cs
- Win32PrintDialog.cs
- DbMetaDataCollectionNames.cs
- DefaultObjectSerializer.cs
- cache.cs
- EnumUnknown.cs
- RewritingSimplifier.cs
- HandleValueEditor.cs
- StringFormat.cs
- CategoryGridEntry.cs
- Knowncolors.cs
- CodeCommentStatement.cs
- NavigationProperty.cs
- ChannelBuilder.cs
- SafePEFileHandle.cs
- DefaultBinder.cs
- TTSVoice.cs
- ReachDocumentReferenceSerializerAsync.cs
- IdleTimeoutMonitor.cs
- XmlSchemaExporter.cs
- ReadOnlyCollectionBase.cs
- Splitter.cs
- Ipv6Element.cs
- CharKeyFrameCollection.cs
- ColorKeyFrameCollection.cs