我有 ac# 应用程序 winForm。该表单包含一个显示文件 windows 文件系统的树视图。我想为右键单击打开 Windows 上下文菜单条的文件添加一个选项。有一种方法可以将 windows 菜单集成到我的 c# 应用程序中吗?
感谢!
一切皆有可能。
您首先必须在节点上单击鼠标右键。
private void treeView1_NodeMouseClick(object sender, TreeNodeMouseClickEventArgs e)
{
if (e.Button == MouseButtons.Right)
{
treeView1.SelectedNode = e.Node;
//Play with the context menu here.
}
}
在您使用上下文菜单的部分,您可以随心所欲地使用它(在这种情况下,我猜是让它出现在这个位置。)您应该阅读ContextMenuStrip 类以获取更多信息。