Silverlight自定义控件继承问题

时间:2011-12-05 16:00:36

标签: silverlight inheritance user-controls

所以,我在SL4中有以下控件......

XAML:

<Canvas x:Class="LineAnnotation"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
        Canvas.Left="0" Canvas.Top="0" Loaded="Canvas_Loaded"  >
</Canvas>

代码隐藏:

public partial class LineAnnotation : Canvas
    {


        public LineAnnotation()
        {
            InitializeComponent();

        }


        void Canvas_Loaded(object sender, RoutedEventArgs e)
        {
            this.Height = ((Canvas)this.Parent).Height;
            this.Width = ((Canvas)this.Parent).Width;
        }
    }

这个类工作正常,我可以实例化并使用它。但是,我有另一个控件,它将这个子类化:

public class ArrowAnnotation : LineAnnotation
{

    public ArrowAnnotation() : base() 
    {
        // Some other init stuff
    }

} 

当我尝试在我的代码中实例化其中一个时,我得到以下异常:

System.Windows.Markup.XamlParseException: Failed to assign to property 'System.Windows.FrameworkElement.Loaded'. [Line: 5 Position: 47]
   at System.Windows.Application.LoadComponent(Object component, Uri resourceLocator)
   at LineAnnotation.InitializeComponent()
   at LineAnnotation..ctor()

这不仅仅是Loaded事件,它可以是任何事件处理程序,我得到相同的异常。这段代码碰巧与WPF项目共享,这很好。知道问题在这里吗?

编辑:我意识到ArrowAnnotation不需要是部分类,因为没有xaml。改变这一点没有任何区别。

1 个答案:

答案 0 :(得分:2)

看来你不能这样做。您可以在代码隐藏中连接处理程序,也可以在子类中实现处理程序。

http://forums.silverlight.net/t/148606.aspx/1