4

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

这是场景:

我创建了一个简单的 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: 

为什么会这样?

4

2 回答 2

2

问题是这void button1_Click()不是Click事件的有效处理程序。 Click是 a RoutedEventHandler,定义为:

public delegate void RoutedEventHandler(
    Object sender,
    RoutedEventArgs e
)

请注意,您也可以使用void button1_Click(object anyName, EventArgs forTheParams),它只需要与委托匹配得足够紧密即可进行转换。

于 2012-06-19T18:02:51.577 回答
0

我有这样的场景,我将按钮链接到这样的方法......

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

我不知何故复制了这个方法,结果我也得到了这个错误。未能分配给属性'System.Windows.Controls.Primitives.ButtonBase.Click 希望这可以帮助某人节省一些时间。

于 2014-06-02T06:53:38.660 回答