public static void SetBar(object target, int value)
 {
     AttachablePropertyServices.SetProperty(target, barPropertyName, value);
 }
Beispiel #2
0
 public static void SetSymbol(object instance, object value) =>
 AttachablePropertyServices.SetProperty(instance, SymbolName, value);
 public static void SetFoo(object target, string value)
 {
     AttachablePropertyServices.SetProperty(target, fooPropertyName, value);
 }
Beispiel #4
0
 public static void SetPropertyReference(object target, ActivityPropertyReference value)
 {
     AttachablePropertyServices.SetProperty(target, propertyReferencePropertyID, value);
 }