Inheritance: ReactiveObject
Ejemplo n.º 1
0
 public SpriteImageJob(ImageSource imageSource, Rect rect)
 {
     this.imageSource = imageSource;
     this.rect = rect;
 }
Ejemplo n.º 2
0
 public void DrawImage(ImageSource imageSource, Rect rect)
 {
     this.jobs.Add(new SpriteImageJob(imageSource, rect));
 }
Ejemplo n.º 3
0
 public ApplicationBarIconButton(string text, ImageSource iconImageSource)
 {
     this.text = text;
     this.iconImageSource = iconImageSource;
 }