截屏:
我使用下面的代码在屏幕截图中填充了上面的菜单,但我很傻,我不知道如何在每个子项上创建点击事件,因为它们没有属性名称?:S 我的意图是单击,比如说,“Do and Do”,然后文件将使用Process.Start(filename);
. 请多多包涵,因为我对编程很陌生。:| 非常感谢!
private void loadViewTemplates(string path)
{
foreach (string file in Directory.GetFiles(path, "*.txt"))
{
ToolStripItem subItem = new ToolStripMenuItem();
subItem.Text = Path.GetFileNameWithoutExtension(file);
viewTemplatesToolStripMenuItem.DropDownItems.Add(subItem);
}
}