当canvas在ItemTemplate中时,如何调用InvalidateSurface方法?

时间:2017-12-11 12:32:59

标签: android xamarin.forms skiasharp

我希望能够更新在SKCanvasView上绘制的图像。画布包含在Telerik SlideView项目模板中。以下是我将图像绘制到画布上的方法:

private void OnCanvasViewPaintSurface(object sender, SKPaintSurfaceEventArgs args)
{
    SKImageInfo info = args.Info;
    SKSurface surface = args.Surface;
    SKCanvas canvas = surface.Canvas;

    canvas.Clear();
    float x = info.Width / 2 - _currentBitmap.Width / 2;
    float y = info.Height / 2 - _currentBitmap.Height / 2;

    if (sender is BindableObject bo)
    {
        if (bo.BindingContext is MyObjectType o)
        {
            string file = o.Id + ".jpg";
            if (File.Exists(file))
            {
                _currentBitmap = SKBitmap.Decode(file);
                canvas.DrawBitmap(_currentBitmap, x, y);
            }
        }
    }
}

我需要在触发其他事件后更改绘制的图像。我知道要刷新SKCanvasView,我调用InvalidateSurface()方法。这适用于我的onTouch事件:

private void Canvas_OnTouch(object sender, SKTouchEventArgs e)
{
    if (e == null) return;
    if (e.ActionType.Equals(SKTouchAction.Pressed))
    {
        if (sender is SKCanvasView canvas)
        {
            canvas.InvalidateSurface();
        }
    }
}

但是,我还需要在代码中的其他位置更改绘制的图像。如何在其他方法中访问SKCanvasView,以便我可以调用InvalidateSurface()? OnCanvasViewPaintSurface方法似乎只显示SKCanvas而不是SKCanvasView,因此我无法将类成员设置为该类,并从其他方法访问它。

1 个答案:

答案 0 :(得分:1)

我自己设法解决了这个问题。 OnTouch事件中的sender对象参数实际上是SKCanvasView类型,因此您可以设置一个类属性来引用它。