with the following code
Best regards
wbmp = BitmapFactory.New(300, 300);
IMG1.Source = wbmp;
BitmapContext bmpc = wbmp.GetBitmapContext();
// Clear the WriteableBitmap with white color
wbmp.Clear(Colors.Red);
wbmp.DrawLine(0, 0, 1000, 1000, Colors.Black);
I can't see nothing on screen and Invalidate is not present in WPF. How can I use the library on FPF?Best regards