如何在代码中向ListBoxItem添加处理程序?

时间:2014-01-31 05:48:39

标签: c# windows-phone-8 .net-4.5

我正在尝试使用addHandler方法解决我的问题,但我不知道如何正确设置其参数。 我的方法是:

lbi.AddHandler(OnMouseLeftButtonUp, GoToEditDraft, true);
public static void GoToEditDraft()
    {

    }

我想在用户点击ListBoxItem(lbi)时触发GoToEditDraft方法。我理解我的数据类型错误,我没有设置。如何正确设置? 谢谢!

1 个答案:

答案 0 :(得分:1)

我想让用户点击ListBoxItem(lbi)时触发方法GoToEditDraft”。那么这个怎么样:

lbi.MouseLeftButtonUp += GoToEditDraft;
private void GoToEditDraft(object sender, MouseButtonEventArgs mouseButtonEventArgs)
{
    //TODO: put some logic here
}