如何知道它是否在当前事件之后的其他事件链中? (例如,在当前UserControl的子元素中)
我在事件处理程序中:
private void UserControl_ContextMenuOpening(object sender,ContextMenuEventArgs e)
{
//if no any next menus - show my last menu in chain
ShowLastMenu(e);
e.Handled = true;
}
我想显示上下文菜单,但仅限于队列为空的情况。