示例#1
0
 private void Load()
 {
     __MyStack.Children.Clear();
     for (var i = 0; i < Configuration.Repetitions; i++)
     {
         var image = new MutableImage
         {
             WidthRequest  = Configuration.RowHeight,
             HeightRequest = Configuration.RowHeight,
             Source        = Configuration.NewImageSource()
         };
         MutableImageList.Add(image);
         //image.PropertyChanged += ImageOnPropertyChanged;
         __MyStack.Children.Add(image);
     }
 }
示例#2
0
 public void Process(MutableImage currentIamge, IProcessableImage nextPicture)
 {
 }