我希望我問正確的問題,但這是我的情況。我有一個TreeViewItem
,我正在實施。在裏面我設置/添加各種屬性,其中之一是ContextMenu
。我想要做的就是將MenuItems
添加到ContextMenu
而不傳遞給函數等。在實施過程中是否可以將菜單項添加到上下文菜單?
以下是我實現我TreeViewItem
與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
}
};
非常感謝!
我接受了這個答案,因爲它是我用來讓我的程序工作的人。非常感謝你。 –