Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / Orcas / QFE / wpf / src / Framework / MS / Internal / Ink / ISFClipboardData.cs / 1 / ISFClipboardData.cs
//---------------------------------------------------------------------------- // // File: ISFClipboardData.cs // // Description: // A class which can convert the clipboard data from/to StrokeCollection // // Features: // // History: // 11/17/2004 waynezen: Created // // Copyright (C) 2001 by Microsoft Corporation. All rights reserved. // //--------------------------------------------------------------------------- using System; using System.IO; using System.Windows; using System.Windows.Controls; using System.Windows.Ink; using System.Security; using System.Security.Permissions; namespace MS.Internal.Ink { internal class ISFClipboardData : ClipboardData { //------------------------------------------------------------------------------- // // Constructors // //------------------------------------------------------------------------------- #region Constructors // The default constructor internal ISFClipboardData() { } // The constructor which takes StrokeCollection argument internal ISFClipboardData(StrokeCollection strokes) { _strokes = strokes; } // Checks if the data can be pasted. internal override bool CanPaste(IDataObject dataObject) { return dataObject.GetDataPresent(StrokeCollection.InkSerializedFormat, false); } #endregion Constructors //-------------------------------------------------------------------------------- // // Protected Methods // //------------------------------------------------------------------------------- #region Protected Methods // Checks if there is stroke data in this instance protected override bool CanCopy() { return (Strokes != null && Strokes.Count != 0); } // Copies the internal strokes to the IDataObject ////// Critical: This code asserts to set data on a data object /// [SecurityCritical] protected override void DoCopy(IDataObject dataObject) { // samgeo - Presharp issue // Presharp gives a warning when local IDisposable variables are not closed // in this case, we can't call Dispose since it will also close the underlying stream // which needs to be open for consumers to read #pragma warning disable 1634, 1691 #pragma warning disable 6518 // Save the data in the data object. MemoryStream stream = new MemoryStream(); Strokes.Save(stream); stream.Position = 0; (new UIPermission(UIPermissionClipboard.AllClipboard)).Assert();//BlessedAssert try { dataObject.SetData(StrokeCollection.InkSerializedFormat, stream); } finally { UIPermission.RevertAssert(); } #pragma warning restore 6518 #pragma warning restore 1634, 1691 } // Retrieves the stroks from the IDataObject protected override void DoPaste(IDataObject dataObject) { // Check if we have ink data MemoryStream stream = dataObject.GetData(StrokeCollection.InkSerializedFormat) as MemoryStream; StrokeCollection newStrokes = null; bool fSucceeded = false; if ( stream != null && stream != Stream.Null ) { try { // Now add these ink strokes to the InkCanvas ink collection. newStrokes = new StrokeCollection(stream); fSucceeded = true; } catch ( ArgumentException ) { // If an invalid stream was passed in, we should get ArgumentException here. // We catch this specific exception and eat it. fSucceeded = false; } } // Depending on whether we are succeeded or not, we set the correct stroke collection here. _strokes = fSucceeded ? newStrokes : new StrokeCollection(); } #endregion Protected Methods //-------------------------------------------------------------------------------- // // Internal Properties // //-------------------------------------------------------------------------------- #region Internal Properties // Gets the strokes internal StrokeCollection Strokes { get { return _strokes; } } #endregion Internal Properties //------------------------------------------------------------------------------- // // Private Fields // //-------------------------------------------------------------------------------- #region Private Fields StrokeCollection _strokes; #endregion Private Fields } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved. //---------------------------------------------------------------------------- // // File: ISFClipboardData.cs // // Description: // A class which can convert the clipboard data from/to StrokeCollection // // Features: // // History: // 11/17/2004 waynezen: Created // // Copyright (C) 2001 by Microsoft Corporation. All rights reserved. // //--------------------------------------------------------------------------- using System; using System.IO; using System.Windows; using System.Windows.Controls; using System.Windows.Ink; using System.Security; using System.Security.Permissions; namespace MS.Internal.Ink { internal class ISFClipboardData : ClipboardData { //------------------------------------------------------------------------------- // // Constructors // //------------------------------------------------------------------------------- #region Constructors // The default constructor internal ISFClipboardData() { } // The constructor which takes StrokeCollection argument internal ISFClipboardData(StrokeCollection strokes) { _strokes = strokes; } // Checks if the data can be pasted. internal override bool CanPaste(IDataObject dataObject) { return dataObject.GetDataPresent(StrokeCollection.InkSerializedFormat, false); } #endregion Constructors //-------------------------------------------------------------------------------- // // Protected Methods // //------------------------------------------------------------------------------- #region Protected Methods // Checks if there is stroke data in this instance protected override bool CanCopy() { return (Strokes != null && Strokes.Count != 0); } // Copies the internal strokes to the IDataObject ////// Critical: This code asserts to set data on a data object /// [SecurityCritical] protected override void DoCopy(IDataObject dataObject) { // samgeo - Presharp issue // Presharp gives a warning when local IDisposable variables are not closed // in this case, we can't call Dispose since it will also close the underlying stream // which needs to be open for consumers to read #pragma warning disable 1634, 1691 #pragma warning disable 6518 // Save the data in the data object. MemoryStream stream = new MemoryStream(); Strokes.Save(stream); stream.Position = 0; (new UIPermission(UIPermissionClipboard.AllClipboard)).Assert();//BlessedAssert try { dataObject.SetData(StrokeCollection.InkSerializedFormat, stream); } finally { UIPermission.RevertAssert(); } #pragma warning restore 6518 #pragma warning restore 1634, 1691 } // Retrieves the stroks from the IDataObject protected override void DoPaste(IDataObject dataObject) { // Check if we have ink data MemoryStream stream = dataObject.GetData(StrokeCollection.InkSerializedFormat) as MemoryStream; StrokeCollection newStrokes = null; bool fSucceeded = false; if ( stream != null && stream != Stream.Null ) { try { // Now add these ink strokes to the InkCanvas ink collection. newStrokes = new StrokeCollection(stream); fSucceeded = true; } catch ( ArgumentException ) { // If an invalid stream was passed in, we should get ArgumentException here. // We catch this specific exception and eat it. fSucceeded = false; } } // Depending on whether we are succeeded or not, we set the correct stroke collection here. _strokes = fSucceeded ? newStrokes : new StrokeCollection(); } #endregion Protected Methods //-------------------------------------------------------------------------------- // // Internal Properties // //-------------------------------------------------------------------------------- #region Internal Properties // Gets the strokes internal StrokeCollection Strokes { get { return _strokes; } } #endregion Internal Properties //------------------------------------------------------------------------------- // // Private Fields // //-------------------------------------------------------------------------------- #region Private Fields StrokeCollection _strokes; #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
- SoapAttributeOverrides.cs
- StateMachine.cs
- ResourceDictionary.cs
- InternalRelationshipCollection.cs
- SendKeys.cs
- DataViewManager.cs
- UIElement.cs
- ScriptBehaviorDescriptor.cs
- SoapInteropTypes.cs
- ReflectionHelper.cs
- XmlSchemaAttribute.cs
- AnimationClockResource.cs
- AppSettingsExpressionBuilder.cs
- EdmSchemaError.cs
- ObjectDataSourceDisposingEventArgs.cs
- BitmapEffectDrawingContextWalker.cs
- _LocalDataStore.cs
- QuestionEventArgs.cs
- CompModSwitches.cs
- CircleHotSpot.cs
- RichTextBoxContextMenu.cs
- ListQueryResults.cs
- ALinqExpressionVisitor.cs
- TextEndOfParagraph.cs
- XamlReaderConstants.cs
- DesignerActionTextItem.cs
- LightweightCodeGenerator.cs
- followingquery.cs
- AspCompat.cs
- HttpCacheVary.cs
- DesignSurface.cs
- RemotingConfiguration.cs
- TableParagraph.cs
- TraceInternal.cs
- RouteItem.cs
- KeyValueSerializer.cs
- XmlSchemaNotation.cs
- TransformerInfoCollection.cs
- ListViewHitTestInfo.cs
- AppDomainInstanceProvider.cs
- SocketElement.cs
- CompilerResults.cs
- GPRECT.cs
- DocumentPageTextView.cs
- FormatSelectingMessageInspector.cs
- SchemaTypeEmitter.cs
- SortableBindingList.cs
- WebPartsSection.cs
- Profiler.cs
- Helpers.cs
- DesignerObjectListAdapter.cs
- HwndSourceParameters.cs
- DefaultDiscoveryServiceExtension.cs
- FileDetails.cs
- DelegateArgumentReference.cs
- TreeViewAutomationPeer.cs
- DataServiceRequestException.cs
- ImageBrush.cs
- SqlBuffer.cs
- FlowDocumentReader.cs
- ImageKeyConverter.cs
- SendMessageChannelCache.cs
- AttachmentService.cs
- WSFederationHttpBindingCollectionElement.cs
- ValidatingPropertiesEventArgs.cs
- TreeView.cs
- MarkupObject.cs
- WmlListAdapter.cs
- HtmlFormWrapper.cs
- PersonalizableAttribute.cs
- Polygon.cs
- ThemeableAttribute.cs
- HttpListenerPrefixCollection.cs
- TypeForwardedToAttribute.cs
- ComponentEvent.cs
- ExtendedProperty.cs
- TypeDependencyAttribute.cs
- PtsHelper.cs
- WindowsStatic.cs
- PassportPrincipal.cs
- Vector.cs
- PathGeometry.cs
- ErrorWrapper.cs
- BamlResourceSerializer.cs
- FilteredDataSetHelper.cs
- EventsTab.cs
- SecurityContextTokenValidationException.cs
- Adorner.cs
- ReachObjectContext.cs
- SessionState.cs
- ConfigXmlCDataSection.cs
- HandlerFactoryCache.cs
- SettingsContext.cs
- SoapServerMethod.cs
- TraceUtils.cs
- AggregationMinMaxHelpers.cs
- Memoizer.cs
- TextTreeUndoUnit.cs
- DataGridViewRowsAddedEventArgs.cs
- RequestCacheEntry.cs