我希望我问的是正确的问题,但这是我的情况。我有一个TreeViewItem
我正在实施的。在其中我设置/添加各种属性,其中一个是ContextMenu
. 我想要做的就是添加MenuItems
到ContextMenu
而不传递给函数等。
这是我如何实现我的TreeViewItem
with ContextMenu
:
public static TreeViewItem Item = new TreeViewItem() //Child Node
{
ContextMenu = new ContextMenu //CONTEXT MENU
{
Background = Brushes.White,
BorderBrush = Brushes.Black,
BorderThickness = new Thickness(1),
//**I would like to add my MENUITEMS here if possible
}
};
非常感谢!