Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / wpf / src / Core / CSharp / System / Windows / Media / Animation / SlipBehavior.cs / 1305600 / 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
- TreeViewHitTestInfo.cs
- DynamicRouteExpression.cs
- VoiceInfo.cs
- SelectionRange.cs
- ContentOperations.cs
- SqlBulkCopyColumnMapping.cs
- TraceUtility.cs
- VariableAction.cs
- KeyGesture.cs
- LoadedOrUnloadedOperation.cs
- FontSizeConverter.cs
- LineInfo.cs
- ElementUtil.cs
- ZoneIdentityPermission.cs
- StsCommunicationException.cs
- UTF7Encoding.cs
- RegisteredScript.cs
- CLSCompliantAttribute.cs
- EmptyEnumerable.cs
- DataGridViewTextBoxEditingControl.cs
- ProcessProtocolHandler.cs
- localization.cs
- MediaEntryAttribute.cs
- Base64Stream.cs
- XomlSerializationHelpers.cs
- DynamicMetaObject.cs
- ServiceModelActivity.cs
- DecimalAnimationUsingKeyFrames.cs
- MimeObjectFactory.cs
- OdbcHandle.cs
- CssTextWriter.cs
- GlobalizationAssembly.cs
- XPathBuilder.cs
- WindowsToolbarItemAsMenuItem.cs
- ImageList.cs
- SplitContainer.cs
- LoadGrammarCompletedEventArgs.cs
- AudioException.cs
- NumericUpDown.cs
- Wizard.cs
- XsltOutput.cs
- BufferModeSettings.cs
- CollectionConverter.cs
- BitmapCacheBrush.cs
- WebScriptEndpointElement.cs
- TraceSection.cs
- ReferencedType.cs
- MetricEntry.cs
- MouseGestureValueSerializer.cs
- OleDbConnectionInternal.cs
- RegisteredArrayDeclaration.cs
- CopyOfAction.cs
- GACMembershipCondition.cs
- SiteMembershipCondition.cs
- LinearGradientBrush.cs
- CompressedStack.cs
- InstanceView.cs
- StoreAnnotationsMap.cs
- WindowsListViewSubItem.cs
- SemanticAnalyzer.cs
- AttributeUsageAttribute.cs
- SortedList.cs
- TemplateNameScope.cs
- ClientBuildManagerCallback.cs
- WeakEventManager.cs
- ControlAdapter.cs
- FontUnitConverter.cs
- AjaxFrameworkAssemblyAttribute.cs
- VSWCFServiceContractGenerator.cs
- AddInAdapter.cs
- HwndHost.cs
- PageRequestManager.cs
- NullableDecimalSumAggregationOperator.cs
- externdll.cs
- ApplicationDirectoryMembershipCondition.cs
- ProfileSettingsCollection.cs
- ObfuscateAssemblyAttribute.cs
- PageAsyncTaskManager.cs
- ClientType.cs
- XMLSyntaxException.cs
- DataGridBoundColumn.cs
- PhotoPrintingIntent.cs
- SamlSecurityTokenAuthenticator.cs
- FlowLayout.cs
- PkcsMisc.cs
- HtmlMeta.cs
- Wizard.cs
- GeneralTransform2DTo3DTo2D.cs
- Brush.cs
- ClonableStack.cs
- FileStream.cs
- GenericUriParser.cs
- MediaScriptCommandRoutedEventArgs.cs
- BridgeDataReader.cs
- AssertFilter.cs
- SequenceDesignerAccessibleObject.cs
- IntegerFacetDescriptionElement.cs
- ExpressionBuilder.cs
- MetadataUtilsSmi.cs
- NonClientArea.cs