2 instantiations of Condition
PresentationFramework (2)
System\Windows\Markup\Baml2006\WpfGeneratedKnownTypes.cs (1)
3018DefaultConstructor = delegate () { return new System.Windows.Condition(); }
System\Windows\Markup\KnownTypes.cs (1)
1174case KnownElements.Condition: o = new System.Windows.Condition(); break;
34 references to Condition
PresentationFramework (34)
MS\Internal\Helper.cs (2)
726else if (typeof(Condition).IsAssignableFrom(type)) 728return Condition.ReceiveMarkupExtension;
System\Windows\Condition.cs (4)
263Condition condition = targetObject as Condition; 274Condition condition = targetObject as Condition;
System\Windows\ConditionCollection.cs (5)
20public sealed class ConditionCollection : Collection<Condition> 36protected override void InsertItem(int index, Condition item) 55protected override void SetItem(int index, Condition item) 109Condition condition = value as Condition;
System\Windows\Markup\Baml2006\Baml2006KnownTypes.cs (1)
191case 98: t = () => typeof(Condition); break;
System\Windows\Markup\Baml2006\WpfGeneratedKnownProperties.cs (12)
7537Type type = typeof(System.Windows.Condition); 7539this.GetXamlType(typeof(System.Windows.Condition)), // DeclaringType 7548SetDelegate = delegate (object target, object value) { ((System.Windows.Condition)target).Property = (System.Windows.DependencyProperty)value; }, 7549GetDelegate = delegate (object target) { return ((System.Windows.Condition)target).Property; } 7558Type type = typeof(System.Windows.Condition); 7560this.GetXamlType(typeof(System.Windows.Condition)), // DeclaringType 7568SetDelegate = delegate (object target, object value) { ((System.Windows.Condition)target).Value = (System.Object)value; }, 7569GetDelegate = delegate (object target) { return ((System.Windows.Condition)target).Value; } 7578Type type = typeof(System.Windows.Condition); 7580this.GetXamlType(typeof(System.Windows.Condition)), // DeclaringType 7587SetDelegate = delegate (object target, object value) { ((System.Windows.Condition)target).Binding = (System.Windows.Data.BindingBase)value; }, 7588GetDelegate = delegate (object target) { return ((System.Windows.Condition)target).Binding; }
System\Windows\Markup\Baml2006\WpfGeneratedKnownTypes.cs (1)
3015typeof(System.Windows.Condition),
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;
System\Windows\Markup\KnownTypes.cs (1)
5645case KnownElements.Condition: t = typeof(System.Windows.Condition); break;
System\Windows\Style.cs (2)
772Condition triggerCondition = multiTrigger.Conditions[k]; 785Condition dataCondition = multiDataTrigger.Conditions[k];
System\Windows\StyleHelper.cs (2)
964Condition triggerCondition = multiTrigger.Conditions[k]; 977Condition dataCondition = multiDataTrigger.Conditions[k];