public ShowImageLengthObserver(ContentControl cc, ImageController ic)
 {
     CC = cc;
     IC = ic;
     IC.Attach(this);
     Draw(IC);
 }
Exemplo n.º 2
0
 public ShowImageObserver(Image image, ImageController ic)
 {
     Image = image;
     IC    = ic;
     IC.Attach(this);
     Draw(IC);
 }
 public void Attach(ImageController ic)
 {
     IC = ic;
     IC.Attach(this);
     Draw(ic);
 }