在WinMhone的Xamarin.Forms中无法识别自定义选取器渲染器绘制事件

时间:2016-02-02 14:20:04

标签: c# mobile xamarin windows-phone-8.1 xamarin.forms

我正在尝试自定义Xamarin.Forms选择器控件。在android和ios中,我重写Draw事件并自己绘制控件。但是在WinPhone 8.1项目中,我无法覆盖Draw事件,因为它无法识别。下面是我在android和ios中使用的代码以及WinPhone项目的屏幕截图,显示绘制事件不存在。

的Android

using Android.Graphics;
using Namespace.CustomControls;
using Namespace.Droid.Renderers;
using Xamarin.Forms;
using Xamarin.Forms.Platform.Android;

[assembly: ExportRendererAttribute(typeof(BindablePicker), typeof(BindablePickerRenderer))]
namespace Namespace.Droid.Renderers
{
    public class BindablePickerRenderer : PickerRenderer
    {
        public BindablePickerRenderer()
        {
            this.SetWillNotDraw(false);
        }

        protected override void OnElementChanged(ElementChangedEventArgs<Picker> e)
        {
            base.OnElementChanged(e);
            this.Element.PropertyChanged += (s_, e_) => Invalidate();
        }

        public override void Draw(Canvas canvas)
        {
            BindablePicker bp = (BindablePicker)this.Element;

            // Code to draw my control
        }
    }
}

IOS

using System;
using System.Collections.Generic;
using System.Text;
using CoreGraphics;
using Xamarin.Forms.Platform.iOS;
using Namespace.CustomControls;
using UIKit;
using Xamarin.Forms;
using Namespace.iOS.Renderers;

[assembly: ExportRendererAttribute(typeof(BindablePicker), typeof(BindablePickerRenderer))]
namespace Namespace.iOS.Renderers
{
    public class BindablePickerRenderer : PickerRenderer
    {
        protected override void OnElementChanged(ElementChangedEventArgs<Picker> e)
        {
            base.OnElementChanged(e);
            this.Element.PropertyChanged += (s_, e_) => SetNeedsDisplay();
        }
        public override void Draw(CGRect rect)
        {
            BindablePicker bp = (BindablePicker)this.Element;

            // Code to draw my control
        }
    }
}

WinPhone

The only event available is OnApplyTemplate

如果有人知道如何在Windows Phone 8.1平台上进入此控件的绘制事件,我将非常感激。

提前致谢。

1 个答案:

答案 0 :(得分:2)

WindowsPhone没有直接绘图能力。

您需要创建某种控件层次结构,以满足您对Windows Phone平台的需求。

如果您想进行自定义绘图,请使用WriteableBitmap之类的内容,然后渲染到图像控件中。

或者可以查看NGraphics,并为Xamarin.Forms here添加包装控件。