2 instantiations of Condition
PresentationFramework (2)
System\Windows\Markup\Baml2006\WpfGeneratedKnownTypes.cs (1)
2870bamlType.DefaultConstructor = delegate() { return new System.Windows.Condition(); };
System\Windows\Markup\KnownTypes.cs (1)
1181case KnownElements.Condition: o = new System.Windows.Condition(); break;
34 references to Condition
PresentationFramework (34)
MS\Internal\Helper.cs (2)
739else if (typeof(Condition).IsAssignableFrom(type)) 741return Condition.ReceiveMarkupExtension;
System\Windows\Condition.cs (4)
269Condition condition = targetObject as Condition; 280Condition condition = targetObject as Condition;
System\Windows\ConditionCollection.cs (5)
25public sealed class ConditionCollection : Collection<Condition> 41protected override void InsertItem(int index, Condition item) 60protected override void SetItem(int index, Condition item) 114Condition condition = value as Condition;
System\Windows\Markup\Baml2006\Baml2006KnownTypes.cs (1)
194case 98: t = () => typeof(Condition); break;
System\Windows\Markup\Baml2006\WpfGeneratedKnownProperties.cs (12)
7004Type type = typeof(System.Windows.Condition); 7006this.GetXamlType(typeof(System.Windows.Condition)), // DeclaringType 7014bamlMember.SetDelegate = delegate(object target, object value) { ((System.Windows.Condition)target).Property = (System.Windows.DependencyProperty)value; }; 7015bamlMember.GetDelegate = delegate(object target) { return ((System.Windows.Condition)target).Property; }; 7023Type type = typeof(System.Windows.Condition); 7025this.GetXamlType(typeof(System.Windows.Condition)), // DeclaringType 7032bamlMember.SetDelegate = delegate(object target, object value) { ((System.Windows.Condition)target).Value = (System.Object)value; }; 7033bamlMember.GetDelegate = delegate(object target) { return ((System.Windows.Condition)target).Value; }; 7041Type type = typeof(System.Windows.Condition); 7043this.GetXamlType(typeof(System.Windows.Condition)), // DeclaringType 7049bamlMember.SetDelegate = delegate(object target, object value) { ((System.Windows.Condition)target).Binding = (System.Windows.Data.BindingBase)value; }; 7050bamlMember.GetDelegate = delegate(object target) { return ((System.Windows.Condition)target).Binding; };
System\Windows\Markup\Baml2006\WpfGeneratedKnownTypes.cs (1)
2868typeof(System.Windows.Condition),
System\Windows\Markup\Baml2006\WpfKnownType.cs (4)
274else if (typeof(Condition).IsAssignableFrom(_underlyingType)) 276return Condition.ReceiveMarkupExtension; 291else if (typeof(Condition).IsAssignableFrom(_underlyingType)) 293return Condition.ReceiveTypeConverter;
System\Windows\Markup\KnownTypes.cs (1)
5652case KnownElements.Condition: t = typeof(System.Windows.Condition); break;
System\Windows\Style.cs (2)
800Condition triggerCondition = multiTrigger.Conditions[k]; 814Condition dataCondition = multiDataTrigger.Conditions[k];
System\Windows\StyleHelper.cs (2)
973Condition triggerCondition = multiTrigger.Conditions[k]; 986Condition dataCondition = multiDataTrigger.Conditions[k];