Windows 小工具:测试环境?
是否有任何东西可以提供控制台、错误日志记录等来测试 Windows 小工具?我已经搜索过,但找不到任何东西。
提前致谢!
Is there anything that provides a console, error logging, etc. for testing Windows Gadgets? I've searched but I'm unable to find anything.
Thanks in advance!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
一个简单易行的开始就是使用任何网络开发工具包。我自己发现,对于开发简单的 Windows 小工具,Notepad++ 和 Firefox 及其 Web Developer 工具栏就足够了。您可以实现所有业务逻辑并只需在浏览器中测试结果。实际上,将其作为小工具启动只需要微调一些图形故障,这些故障总是会发生,因为不同的浏览器对 CSS 的解释仍然略有不同。
Firefox 有一些很好的调试 Javascript 的工具。
A simple and easy start is to just use any web developing toolkit. I found out myself that for developing simple Windows Gadgets, Notepad++ and Firefox with its Web Developer toolbar was more than enough. You can implement all the business logic and just test the results in a browser. Actually starting it as a Gadget was only needed to fine-tune some graphical glitches that always occur because of different browsers still interpreting CSS a little differently.
Firefox has some nice tools for debugging Javascript.
您可以在 IE 中使用 firebug lite(即放置一个脚本标签并包含最新的 firebug lite 版本)。它看起来确实有点粗糙,但它仍然可以工作,并且可以无缝集成测试。
http://getfirebug.com/lite/ie.html
虽然您的小工具可能看起来有点残缺不全使用时。
:)
You can use firebug lite for IE (i.e put a script tag and include the latest firebug lite version).It does look a bit crude but it works nonetheless and its seamless integration for testing.
http://getfirebug.com/lite/ie.html
Though your gadget might seem a bit mutilated when using it.
:)