我正在尝试使用addHandler方法解决我的问题,但我不知道如何正确设置其参数。 我的方法是:
lbi.AddHandler(OnMouseLeftButtonUp, GoToEditDraft, true);
public static void GoToEditDraft()
{
}
我想在用户点击ListBoxItem(lbi)时触发GoToEditDraft方法。我理解我的数据类型错误,我没有设置。如何正确设置? 谢谢!
答案 0 :(得分:1)
“我想让用户点击ListBoxItem(lbi)时触发方法GoToEditDraft”。那么这个怎么样:
lbi.MouseLeftButtonUp += GoToEditDraft;
private void GoToEditDraft(object sender, MouseButtonEventArgs mouseButtonEventArgs)
{
//TODO: put some logic here
}