Ejemplo n.º 1
0
 public void SubscribeColorHandler(ColorMix observer, ColorArgs e)
 {
     if (e.check)
     {
         observer.Add(e.hex);
     }
     else
     {
         observer.Remove(e.hex);
     }
 }
Ejemplo n.º 2
0
 private void DetachThis(ColorBox myBox, ColorMix myMix)
 {
     myBox.Detach(myMix);
 }
Ejemplo n.º 3
0
 private void AttachThis(ColorBox myBox, ColorMix myMix)
 {
     myBox.Attach(myMix);
 }