2 instantiations of Condition
PresentationFramework (2)
System\Windows\Markup\Baml2006\WpfGeneratedKnownTypes.cs (1)
3019DefaultConstructor = delegate () { return new System.Windows.Condition(); }
System\Windows\Markup\KnownTypes.cs (1)
1175case KnownElements.Condition: o = new System.Windows.Condition(); break;
34 references to Condition
PresentationFramework (34)
MS\Internal\Helper.cs (2)
730else if (typeof(Condition).IsAssignableFrom(type)) 732return Condition.ReceiveMarkupExtension;
System\Windows\Condition.cs (4)
264Condition condition = targetObject as Condition; 275Condition condition = targetObject as Condition;
System\Windows\ConditionCollection.cs (5)
21public sealed class ConditionCollection : Collection<Condition> 37protected override void InsertItem(int index, Condition item) 56protected override void SetItem(int index, Condition item) 110Condition condition = value as Condition;
System\Windows\Markup\Baml2006\Baml2006KnownTypes.cs (1)
192case 98: t = () => typeof(Condition); break;
System\Windows\Markup\Baml2006\WpfGeneratedKnownProperties.cs (12)
7538Type type = typeof(System.Windows.Condition); 7540this.GetXamlType(typeof(System.Windows.Condition)), // DeclaringType 7549SetDelegate = delegate (object target, object value) { ((System.Windows.Condition)target).Property = (System.Windows.DependencyProperty)value; }, 7550GetDelegate = delegate (object target) { return ((System.Windows.Condition)target).Property; } 7559Type type = typeof(System.Windows.Condition); 7561this.GetXamlType(typeof(System.Windows.Condition)), // DeclaringType 7569SetDelegate = delegate (object target, object value) { ((System.Windows.Condition)target).Value = (System.Object)value; }, 7570GetDelegate = delegate (object target) { return ((System.Windows.Condition)target).Value; } 7579Type type = typeof(System.Windows.Condition); 7581this.GetXamlType(typeof(System.Windows.Condition)), // DeclaringType 7588SetDelegate = delegate (object target, object value) { ((System.Windows.Condition)target).Binding = (System.Windows.Data.BindingBase)value; }, 7589GetDelegate = delegate (object target) { return ((System.Windows.Condition)target).Binding; }
System\Windows\Markup\Baml2006\WpfGeneratedKnownTypes.cs (1)
3016typeof(System.Windows.Condition),
System\Windows\Markup\Baml2006\WpfKnownType.cs (4)
271else if (typeof(Condition).IsAssignableFrom(_underlyingType)) 273return Condition.ReceiveMarkupExtension; 288else if (typeof(Condition).IsAssignableFrom(_underlyingType)) 290return Condition.ReceiveTypeConverter;
System\Windows\Markup\KnownTypes.cs (1)
5646case KnownElements.Condition: t = typeof(System.Windows.Condition); break;
System\Windows\Style.cs (2)
782Condition triggerCondition = multiTrigger.Conditions[k]; 795Condition dataCondition = multiDataTrigger.Conditions[k];
System\Windows\StyleHelper.cs (2)
969Condition triggerCondition = multiTrigger.Conditions[k]; 982Condition dataCondition = multiDataTrigger.Conditions[k];