本文整理匯總了C#中Transitions.Transition.RemoveProperty方法的典型用法代碼示例。如果您正苦於以下問題:C# Transition.RemoveProperty方法的具體用法?C# Transition.RemoveProperty怎麽用?C# Transition.RemoveProperty使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類Transitions.Transition
的用法示例。
在下文中一共展示了Transition.RemoveProperty方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的C#代碼示例。
示例1: removeDuplicates
/// <summary>
/// Finds any properties in the old-transition that are also in the new one,
/// and removes them from the old one.
/// </summary>
private void removeDuplicates(Transition newTransition, Transition oldTransition)
{
// Note: This checking might be a bit more efficient if it did the checking
// with a set rather than looking through lists. That said, it is only done
// when transitions are added (which isn't very often) rather than on the
// timer, so I don't think this matters too much.
// We get the list of properties for the old and new transitions...
IList<Transition.TransitionedPropertyInfo> newProperties = newTransition.TransitionedProperties;
IList<Transition.TransitionedPropertyInfo> oldProperties = oldTransition.TransitionedProperties;
// We loop through the old properties backwards (as we may be removing
// items from the list if we find a match)...
for (int i = oldProperties.Count - 1; i >= 0; i--)
{
// We get one of the properties from the old transition...
Transition.TransitionedPropertyInfo oldProperty = oldProperties[i];
// Is this property part of the new transition?
foreach (Transition.TransitionedPropertyInfo newProperty in newProperties)
{
if (oldProperty.Target == newProperty.Target
&&
oldProperty.PropertyInfo == newProperty.PropertyInfo)
{
// The old transition contains the same property as the new one,
// so we remove it from the old transition...
oldTransition.RemoveProperty(oldProperty);
}
}
}
}