无法分配财产“System.Windows.Controls.Primitives.ButtonBa

2019-06-25 14:32发布

有一个有趣的情况,我不明白。

这里的情景:

我创建了一个简单的Silverlight 5应用程序。 我把主网页上的按钮控制,并创建一个Click事件处理程序。

XAML如下所示.....

<UserControl x:Class="SilverlightApplication6.MainPage"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
    xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
    mc:Ignorable="d"
    d:DesignHeight="300" d:DesignWidth="400">

    <Grid x:Name="LayoutRoot" Background="White">
        <Button Content="Button" Height="23" HorizontalAlignment="Left" Margin="130,43,0,0" Name="button1" VerticalAlignment="Top" Width="75" Click="button1_Click" />
    </Grid>
</UserControl>

到现在为止还挺好。

电线了在代码中的事件处理程序背后的左右....

private void button1_Click(object sender, RoutedEventArgs e)
{
    MessageBox.Show("Hi There!!!");
}

编译并运行应用程序。 我“点击”按钮,并得到一个不错的消息框。 再次,到目前为止,一切都很好。

该代码添加一个新方法(如下图所示),后面用同样的方法名作为按钮单击事件处理程序,但使用不同的签名。

private void button1_Click()
{
    MessageBox.Show("This method causes a XamlParseException!");
}

编译并执行代码。 调出应用程序,并单击按钮,我得到以下异常:

System.Windows.Markup.XamlParseException was unhandled by user code
  Message=Failed to assign to property 'System.Windows.Controls.Primitives.ButtonBase.Click'. [Line: 10 Position: 149]
  LineNumber=10
  LinePosition=149
  StackTrace:
       at System.Windows.Application.LoadComponent(Object component, Uri resourceLocator)
       at SilverlightApplication6.MainPage.InitializeComponent()
       at SilverlightApplication6.MainPage..ctor()
       at SilverlightApplication6.App.Application_Startup(Object sender, StartupEventArgs e)
       at MS.Internal.CoreInvokeHandler.InvokeEventHandler(UInt32 typeIndex, Delegate handlerDelegate, Object sender, Object args)
       at MS.Internal.JoltHelper.FireEvent(IntPtr unmanagedObj, IntPtr unmanagedObjArgs, Int32 argsTypeIndex, Int32 actualArgsTypeIndex, String eventName, UInt32 flags)
  InnerException: 

为什么会出现这种情况?

Answer 1:

问题是void button1_Click()不是为有效处理Click事件。 ClickRoutedEventHandler ,其定义为:

public delegate void RoutedEventHandler(
    Object sender,
    RoutedEventArgs e
)

请注意,您还可以使用void button1_Click(object anyName, EventArgs forTheParams)它只是相匹配的代表密切足够的转换。



Answer 2:

我曾在那里我挂一个按钮,这样的方法的情况下...

<Button Click="MethodName"..../>

我莫名其妙地复制方法不知道,因此我也得到了这个错误。 无法分配财产“System.Windows.Controls.Primitives.ButtonBase.Click希望这可以帮助别人节省一些时间。



文章来源: Failed to assign to property 'System.Windows.Controls.Primitives.ButtonBase.Click'