public SpriteImageJob(ImageSource imageSource, Rect rect) { this.imageSource = imageSource; this.rect = rect; }
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; }