Code:
/ DotNET / DotNET / 8.0 / untmp / WIN_WINDOWS / lh_tools_devdiv_wpf / Windows / wcp / Core / System / Windows / Media / Animation / SlipBehavior.cs / 1 / SlipBehavior.cs
//------------------------------------------------------------------------------ // Microsoft Windows Client Platform // Copyright (c) Microsoft Corporation, 2005 // // File: SlipBehavior.cs //----------------------------------------------------------------------------- using System.Windows.Media.Animation; namespace System.Windows.Media.Animation { ////// The SlipBehavior enumeration is used to indicate how a TimelineGroup will behave /// when one of its children slips. /// public enum SlipBehavior { ////// Indicates that a TimelineGroup will not slip with the chidren, but will /// expand to fit all slipping children. /// NOTE: This is only effective when the TimelineGroup's duration is not explicitly /// specified. /// Grow, ////// Indicates that a TimelineGroup will slip along with its first child that /// has CanSlip set to true. /// Slip, } } namespace MS.Internal { internal static partial class TimeEnumHelper { private const int c_maxSlipBehavior = (int)SlipBehavior.Slip; static internal bool IsValidSlipBehavior(SlipBehavior value) { return (0 <= value && (int)value <= c_maxSlipBehavior); } } } // 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
- Button.cs
- TableAdapterManagerGenerator.cs
- Regex.cs
- ContextMenuService.cs
- RectangleHotSpot.cs
- COM2IVsPerPropertyBrowsingHandler.cs
- MgmtConfigurationRecord.cs
- ChannelBuilder.cs
- TemplatedMailWebEventProvider.cs
- ColorConverter.cs
- ObjectToken.cs
- SortKey.cs
- XmlLangPropertyAttribute.cs
- LinearQuaternionKeyFrame.cs
- GridViewColumn.cs
- Hash.cs
- BigInt.cs
- Message.cs
- StandardCommandToolStripMenuItem.cs
- SymLanguageVendor.cs
- ButtonBase.cs
- CurrentTimeZone.cs
- PrincipalPermission.cs
- WebPartZoneCollection.cs
- EntityViewContainer.cs
- CheckedListBox.cs
- UnknownBitmapEncoder.cs
- ReachUIElementCollectionSerializerAsync.cs
- DrawItemEvent.cs
- MetaChildrenColumn.cs
- HandlerWithFactory.cs
- SqlError.cs
- SpecularMaterial.cs
- NativeWindow.cs
- SharedStatics.cs
- Selection.cs
- FolderLevelBuildProviderCollection.cs
- OpenFileDialog.cs
- EnumMember.cs
- ReadOnlyDataSource.cs
- PeerName.cs
- ProviderSettings.cs
- XmlSchemaInferenceException.cs
- FunctionUpdateCommand.cs
- SpinLock.cs
- ResourceManagerWrapper.cs
- EnumConverter.cs
- SynchronizationLockException.cs
- HtmlInputPassword.cs
- EntityConnectionStringBuilder.cs
- DesignTimeData.cs
- COM2FontConverter.cs
- BitmapMetadataEnumerator.cs
- InitializationEventAttribute.cs
- __Filters.cs
- Directory.cs
- SqlDataAdapter.cs
- DeploymentExceptionMapper.cs
- XmlDeclaration.cs
- InputLanguageProfileNotifySink.cs
- SizeF.cs
- BehaviorEditorPart.cs
- WorkflowControlEndpoint.cs
- XmlBufferReader.cs
- SecurityAppliedMessage.cs
- PointLightBase.cs
- ProjectionCamera.cs
- TouchFrameEventArgs.cs
- Column.cs
- ToolStripDesignerAvailabilityAttribute.cs
- ImageAttributes.cs
- AppDomainProtocolHandler.cs
- JoinCqlBlock.cs
- assertwrapper.cs
- WasAdminWrapper.cs
- Logging.cs
- UIHelper.cs
- Base64Decoder.cs
- OnOperation.cs
- XPathItem.cs
- LocalClientSecuritySettingsElement.cs
- InvokePatternIdentifiers.cs
- safelink.cs
- _RequestLifetimeSetter.cs
- PathFigureCollection.cs
- QueryTreeBuilder.cs
- Ref.cs
- MediaContext.cs
- DataGridPageChangedEventArgs.cs
- CapabilitiesState.cs
- XPathNodeInfoAtom.cs
- _BufferOffsetSize.cs
- EntityTransaction.cs
- TextEditorSelection.cs
- CompressEmulationStream.cs
- OpenFileDialog.cs
- XamlParser.cs
- COM2AboutBoxPropertyDescriptor.cs
- ExecutionContext.cs
- Int32Storage.cs