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