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
- LabelAutomationPeer.cs
- HtmlTable.cs
- WinEventHandler.cs
- ByteStreamGeometryContext.cs
- HashCoreRequest.cs
- DLinqDataModelProvider.cs
- ControlPropertyNameConverter.cs
- XmlAttributeOverrides.cs
- FormViewInsertEventArgs.cs
- URLIdentityPermission.cs
- DrawingServices.cs
- ElementNotAvailableException.cs
- GC.cs
- FileSystemWatcher.cs
- Util.cs
- WebPartDeleteVerb.cs
- BehaviorDragDropEventArgs.cs
- ContentFilePart.cs
- SchemaImporterExtensionElement.cs
- CodeDirectiveCollection.cs
- AtlasWeb.Designer.cs
- SettingsPropertyNotFoundException.cs
- DataGridPagerStyle.cs
- LinkLabel.cs
- OrderByExpression.cs
- LinkLabelLinkClickedEvent.cs
- HttpDebugHandler.cs
- XmlHierarchicalDataSourceView.cs
- SEHException.cs
- List.cs
- AudioException.cs
- OleDbFactory.cs
- EntityDataSourceDesignerHelper.cs
- ValueTypeFixupInfo.cs
- IntPtr.cs
- WindowsProgressbar.cs
- DbDeleteCommandTree.cs
- ControlFilterExpression.cs
- Command.cs
- EndEvent.cs
- Convert.cs
- InputMethodStateChangeEventArgs.cs
- DataServiceSaveChangesEventArgs.cs
- SystemFonts.cs
- ExpressionBinding.cs
- LinearKeyFrames.cs
- AppDomainProtocolHandler.cs
- ArrayTypeMismatchException.cs
- ProtocolsConfigurationHandler.cs
- AssociationTypeEmitter.cs
- SchemaSetCompiler.cs
- Propagator.JoinPropagator.SubstitutingCloneVisitor.cs
- SQLBinary.cs
- DataControlFieldCollection.cs
- ZipIOEndOfCentralDirectoryBlock.cs
- altserialization.cs
- Msmq4SubqueuePoisonHandler.cs
- DataGridViewDataErrorEventArgs.cs
- NativeMethods.cs
- AtomEntry.cs
- RecordConverter.cs
- SqlCommand.cs
- PageTextBox.cs
- PassportIdentity.cs
- DependencyProperty.cs
- NameValuePermission.cs
- TextureBrush.cs
- GridView.cs
- WebInvokeAttribute.cs
- CookieProtection.cs
- WebPartConnectionsConfigureVerb.cs
- PackageRelationshipSelector.cs
- SetStoryboardSpeedRatio.cs
- Brush.cs
- Function.cs
- httpserverutility.cs
- DataControlField.cs
- TimerEventSubscriptionCollection.cs
- DataSourceGeneratorException.cs
- PointValueSerializer.cs
- TextTrailingWordEllipsis.cs
- PrePrepareMethodAttribute.cs
- DataServiceQueryProvider.cs
- AppDomain.cs
- DeferrableContent.cs
- OleDbParameter.cs
- GeneralTransform3DGroup.cs
- WsdlInspector.cs
- PrintDialog.cs
- SymbolMethod.cs
- StatusBarItemAutomationPeer.cs
- ObjectResult.cs
- SoapAttributeOverrides.cs
- RPIdentityRequirement.cs
- SiteMapSection.cs
- ExtendedProtectionPolicy.cs
- HttpDigestClientCredential.cs
- EnumConverter.cs
- WebPartExportVerb.cs
- GridLength.cs