2 instantiations of Condition
PresentationFramework (2)
src\Framework\System\Windows\Markup\Baml2006\WpfGeneratedKnownTypes.cs (1)
2866bamlType.DefaultConstructor = delegate() { return new System.Windows.Condition(); };
src\Framework\System\Windows\Markup\KnownTypes.cs (1)
1182case KnownElements.Condition: o = new System.Windows.Condition(); break;
34 references to Condition
PresentationFramework (34)
src\Framework\MS\Internal\Helper.cs (2)
754else if (typeof(Condition).IsAssignableFrom(type)) 756return Condition.ReceiveMarkupExtension;
src\Framework\System\Windows\Condition.cs (4)
277Condition condition = targetObject as Condition; 288Condition condition = targetObject as Condition;
src\Framework\System\Windows\ConditionCollection.cs (5)
24public sealed class ConditionCollection : Collection<Condition> 40protected override void InsertItem(int index, Condition item) 59protected override void SetItem(int index, Condition item) 116Condition condition = value as Condition;
src\Framework\System\Windows\Markup\Baml2006\Baml2006KnownTypes.cs (1)
190case 98: t = () => typeof(Condition); break;
src\Framework\System\Windows\Markup\Baml2006\WpfGeneratedKnownProperties.cs (12)
6962Type type = typeof(System.Windows.Condition); 6964this.GetXamlType(typeof(System.Windows.Condition)), // DeclaringType 6972bamlMember.SetDelegate = delegate(object target, object value) { ((System.Windows.Condition)target).Property = (System.Windows.DependencyProperty)value; }; 6973bamlMember.GetDelegate = delegate(object target) { return ((System.Windows.Condition)target).Property; }; 6981Type type = typeof(System.Windows.Condition); 6983this.GetXamlType(typeof(System.Windows.Condition)), // DeclaringType 6990bamlMember.SetDelegate = delegate(object target, object value) { ((System.Windows.Condition)target).Value = (System.Object)value; }; 6991bamlMember.GetDelegate = delegate(object target) { return ((System.Windows.Condition)target).Value; }; 6999Type type = typeof(System.Windows.Condition); 7001this.GetXamlType(typeof(System.Windows.Condition)), // DeclaringType 7007bamlMember.SetDelegate = delegate(object target, object value) { ((System.Windows.Condition)target).Binding = (System.Windows.Data.BindingBase)value; }; 7008bamlMember.GetDelegate = delegate(object target) { return ((System.Windows.Condition)target).Binding; };
src\Framework\System\Windows\Markup\Baml2006\WpfGeneratedKnownTypes.cs (1)
2864typeof(System.Windows.Condition),
src\Framework\System\Windows\Markup\Baml2006\WpfKnownType.cs (4)
270else if (typeof(Condition).IsAssignableFrom(_underlyingType)) 272return Condition.ReceiveMarkupExtension; 287else if (typeof(Condition).IsAssignableFrom(_underlyingType)) 289return Condition.ReceiveTypeConverter;
src\Framework\System\Windows\Markup\KnownTypes.cs (1)
5642case KnownElements.Condition: t = typeof(System.Windows.Condition); break;
src\Framework\System\Windows\Style.cs (2)
806Condition triggerCondition = multiTrigger.Conditions[k]; 820Condition dataCondition = multiDataTrigger.Conditions[k];
src\Framework\System\Windows\StyleHelper.cs (2)
973Condition triggerCondition = multiTrigger.Conditions[k]; 986Condition dataCondition = multiDataTrigger.Conditions[k];