gpt4 book ai didi

c# - VS2010 插件的 DTE ItemOperations.NewFile(...)

转载 作者:行者123 更新时间:2023-11-30 12:52:16 24 4
gpt4 key购买 nike

在这段代码中,在我尝试为 Vs2010 编写的插件中

    _applicationObject.ItemOperations.NewFile( "General\\Text File", FileName, Constants.vsViewKindCode );

第一个参数定义为文件的虚拟位置。

http://msdn.microsoft.com/en-us/library/envdte.itemoperations.newfile(v=vs.80).aspx

它只是一个带有路径的字符串,从我的解决方案的根开始吗?

如果是这样,如果我想将文件放入/+".CV",我该怎么做?

我读了一些在记录宏时创建文件的地方,并查看了宏的内容。上面写着@"Visual C# Items\Code\Class"。

但是当我运行时提示找不到模板。

谢谢,

埃里克-

最佳答案

我实际上用过这个


DTE.ItemOperations.AddNewItem("General\Text File")
它根据我从宏编辑器中获得的内容进行了改革,并将其放在一起

DTEObj.ItemOperations.AddNewItem(@"Visual C# Items\WPF\User Control (WPF)", filename + ".xaml");
所以在你的情况下试试这个

DTEObj.ItemOperations.AddNewItem("General\Text File");

关于c# - VS2010 插件的 DTE ItemOperations.NewFile(...),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4936666/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com