Code:
/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / Orcas / SP / wpf / src / Framework / System / Windows / Media / Animation / StopStoryboard.cs / 1 / StopStoryboard.cs
/****************************************************************************\ * * File: StopStoryboard.cs * * This object includes a Storyboard reference. When triggered, the Storyboard * stops. * * Copyright (C) by Microsoft Corporation. All rights reserved. * \***************************************************************************/ using System.Diagnostics; // Debug.Assert namespace System.Windows.Media.Animation { ////// StopStoryboard will call stop on its Storyboard reference when /// it is triggered. /// public sealed class StopStoryboard : ControllableStoryboardAction { ////// Called when it's time to execute this storyboard action /// internal override void Invoke( FrameworkElement containingFE, FrameworkContentElement containingFCE, Storyboard storyboard ) { Debug.Assert( containingFE != null || containingFCE != null, "Caller of internal function failed to verify that we have a FE or FCE - we have neither." ); if( containingFE != null ) { storyboard.Stop(containingFE); } else { storyboard.Stop(containingFCE); } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved. /****************************************************************************\ * * File: StopStoryboard.cs * * This object includes a Storyboard reference. When triggered, the Storyboard * stops. * * Copyright (C) by Microsoft Corporation. All rights reserved. * \***************************************************************************/ using System.Diagnostics; // Debug.Assert namespace System.Windows.Media.Animation { ////// StopStoryboard will call stop on its Storyboard reference when /// it is triggered. /// public sealed class StopStoryboard : ControllableStoryboardAction { ////// Called when it's time to execute this storyboard action /// internal override void Invoke( FrameworkElement containingFE, FrameworkContentElement containingFCE, Storyboard storyboard ) { Debug.Assert( containingFE != null || containingFCE != null, "Caller of internal function failed to verify that we have a FE or FCE - we have neither." ); if( containingFE != null ) { storyboard.Stop(containingFE); } else { storyboard.Stop(containingFCE); } } } } // 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
- UndoManager.cs
- VirtualizingPanel.cs
- HtmlTable.cs
- InfoCardRSAPKCS1SignatureDeformatter.cs
- TextTreeTextNode.cs
- _DomainName.cs
- XmlSchemaSimpleTypeUnion.cs
- PingReply.cs
- PropertyBuilder.cs
- SystemResourceKey.cs
- HttpResponseBase.cs
- ReverseComparer.cs
- Separator.cs
- Label.cs
- RequestQueue.cs
- Visual3D.cs
- Icon.cs
- RegionIterator.cs
- StateMachineAction.cs
- ColumnResult.cs
- GetWinFXPath.cs
- BamlWriter.cs
- DependencyPropertyDescriptor.cs
- DifferencingCollection.cs
- MultilineStringConverter.cs
- StorageBasedPackageProperties.cs
- WithParamAction.cs
- DetailsViewInsertedEventArgs.cs
- FactoryMaker.cs
- ResourcesChangeInfo.cs
- Tile.cs
- SafeEventLogReadHandle.cs
- CompilerInfo.cs
- CodeSnippetCompileUnit.cs
- DefaultProxySection.cs
- DetailsViewModeEventArgs.cs
- RegionData.cs
- ReliableMessagingVersion.cs
- Select.cs
- EventDescriptorCollection.cs
- FacetValueContainer.cs
- DrawingCollection.cs
- WebBrowserSiteBase.cs
- DataControlImageButton.cs
- DiagnosticsElement.cs
- TrustManagerPromptUI.cs
- smtppermission.cs
- JsonServiceDocumentSerializer.cs
- ScrollChrome.cs
- GridViewColumn.cs
- WindowsTitleBar.cs
- ScriptReferenceBase.cs
- DesignerObjectListAdapter.cs
- SuppressIldasmAttribute.cs
- UnmanagedMemoryStream.cs
- HttpProfileGroupBase.cs
- ComNativeDescriptor.cs
- ComponentCollection.cs
- ThreadSafeList.cs
- PropertyChangingEventArgs.cs
- Regex.cs
- EntityDataSourceState.cs
- StackBuilderSink.cs
- Expr.cs
- TableRow.cs
- TextTreeUndoUnit.cs
- DocumentReferenceCollection.cs
- ProcessHostConfigUtils.cs
- SqlUserDefinedTypeAttribute.cs
- HotSpot.cs
- BmpBitmapDecoder.cs
- IgnoreDataMemberAttribute.cs
- AbsoluteQuery.cs
- OptionalColumn.cs
- MediaTimeline.cs
- DataObjectSettingDataEventArgs.cs
- DataGridCellItemAutomationPeer.cs
- WebBaseEventKeyComparer.cs
- BaseTransportHeaders.cs
- PlainXmlDeserializer.cs
- HtmlEncodedRawTextWriter.cs
- ModelServiceImpl.cs
- PrefixHandle.cs
- SqlNodeAnnotation.cs
- GridViewSortEventArgs.cs
- CharacterHit.cs
- QuaternionRotation3D.cs
- JsonFormatGeneratorStatics.cs
- WbemProvider.cs
- Dump.cs
- DefaultPrintController.cs
- XmlQualifiedNameTest.cs
- SrgsDocument.cs
- FixedSOMFixedBlock.cs
- Listbox.cs
- ErrorFormatterPage.cs
- RegexNode.cs
- XmlSchemaFacet.cs
- SystemBrushes.cs
- HttpCookie.cs