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
- XhtmlTextWriter.cs
- TypeHelper.cs
- TogglePatternIdentifiers.cs
- BinHexDecoder.cs
- XmlDownloadManager.cs
- BulletedListEventArgs.cs
- BitmapVisualManager.cs
- AutomationEventArgs.cs
- DataViewManager.cs
- ServiceBuildProvider.cs
- PasswordPropertyTextAttribute.cs
- SafeCoTaskMem.cs
- MenuTracker.cs
- IIS7UserPrincipal.cs
- SubclassTypeValidatorAttribute.cs
- DotExpr.cs
- DEREncoding.cs
- RichTextBoxContextMenu.cs
- XmlWriterSettings.cs
- TransactionFlowElement.cs
- CrossContextChannel.cs
- Size3D.cs
- ControlEvent.cs
- AppearanceEditorPart.cs
- ObjectQueryProvider.cs
- CompilerState.cs
- AlternationConverter.cs
- RowVisual.cs
- HttpListenerContext.cs
- InstanceCompleteException.cs
- IUnknownConstantAttribute.cs
- ConfigurationValue.cs
- DecoderFallbackWithFailureFlag.cs
- CLSCompliantAttribute.cs
- BaseComponentEditor.cs
- PartialArray.cs
- SecurityUtils.cs
- ChineseLunisolarCalendar.cs
- IUnknownConstantAttribute.cs
- ValidatorCompatibilityHelper.cs
- RegexStringValidator.cs
- DataServiceRequest.cs
- XmlObjectSerializerReadContextComplex.cs
- TCEAdapterGenerator.cs
- ExpressionNode.cs
- OleDbReferenceCollection.cs
- WorkflowInstanceSuspendedRecord.cs
- SQLDecimal.cs
- StandardOleMarshalObject.cs
- NominalTypeEliminator.cs
- LayoutDump.cs
- Hash.cs
- StateMachine.cs
- DefaultAuthorizationContext.cs
- BitmapMetadataEnumerator.cs
- ContentType.cs
- _AutoWebProxyScriptHelper.cs
- DelegateSerializationHolder.cs
- WebPartExportVerb.cs
- WizardPanelChangingEventArgs.cs
- PackageRelationshipSelector.cs
- _NegotiateClient.cs
- EndpointDesigner.cs
- InkPresenterAutomationPeer.cs
- DesignerValidatorAdapter.cs
- ComboBox.cs
- DataGridViewCellPaintingEventArgs.cs
- Table.cs
- SkipStoryboardToFill.cs
- _ProxyChain.cs
- UnsafeNativeMethods.cs
- CodeDirectoryCompiler.cs
- Point3DCollection.cs
- ItemCollection.cs
- XmlSchemaAttributeGroup.cs
- Facet.cs
- PenContext.cs
- XmlUtil.cs
- InfoCardArgumentException.cs
- SrgsElementFactory.cs
- CodeExporter.cs
- TrustManager.cs
- RequestCachingSection.cs
- DataSourceCacheDurationConverter.cs
- ResourceReferenceKeyNotFoundException.cs
- HMACSHA384.cs
- RegisteredScript.cs
- WebPartDisplayModeCancelEventArgs.cs
- MessageSecurityOverMsmq.cs
- ContainerAction.cs
- QuadraticBezierSegment.cs
- TemplateBuilder.cs
- ExpandoObject.cs
- RowUpdatedEventArgs.cs
- TreeNodeCollection.cs
- DesignerActionListCollection.cs
- Restrictions.cs
- ReturnValue.cs
- HttpWriter.cs
- OracleParameterBinding.cs