如何快速测试Windows Gadgets?
在开发过程中应该如何快速测试Windows Gadget?每次创建存档、安装存档并将其添加到桌面是极其乏味的......
How should one quickly test a Windows Gadget during development? Creating the archive, installing it and adding it to the desktop every time is extremely tedious...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
此应用程序可能会加快该过程:
http://www.codeproject.com/KB/gadgets /GadgetPacker.aspx
在为 Windows 7 开发桌面小工具时,很明显构建过程是多么痛苦。我认为编写一个简单的自动化工具来处理必要的步骤会容易得多。这将加快整体开发和测试阶段。
本文可能也会有所帮助
http://www.howtogeek.com/howto/windows-vista/how-to-debug-a-windows-vista-sidebar-gadget-with-visual-studio/
This application might speed up the process:
http://www.codeproject.com/KB/gadgets/GadgetPacker.aspx
Whilst developing a desktop gadget for Windows 7, it became apparent how much of a pain it was going through the build process. I decided it would be a lot easier to write a simple automation tool, to take care of the necessary steps. This would speed up the overall developing and testing phase.
This article might also be helpfull
http://www.howtogeek.com/howto/windows-vista/how-to-debug-a-windows-vista-sidebar-gadget-with-visual-studio/
安装一次后,您实际上可以直接操作已安装版本的源代码文件。它应该安装在
C:\Users\ YourUserName \AppData\Local\Microsoft\Windows Sidebar\Gadgets\ GadgetName.gadget \
然后,每次您对在那里找到源代码,您只需将小工具的新实例添加到桌面即可。我只是保持小工具库打开并在保存新更改后拖动一个新实例。
After you've installed it once, you can actually manipulate the installed version's source code files directly. It should be installed at
C:\Users\ YourUserName \AppData\Local\Microsoft\Windows Sidebar\Gadgets\ GadgetName.gadget \
Then, each time you make changes to the source code found there you just need to add a new instance of the gadget to your desktop. I just keep the Gadget Gallery open and drag a new instance after I've saved a new change.