English 中文(简体)
创建 Windows 8Metro 应用程序( HTML 5) 没有视觉工作室
原标题:Creating Windows 8 Metro app (HTML5) without Visual Studio

我知道这也许是一个愚蠢的问题,但有没有办法在不使用视觉工作室的情况下建立 Windows 8Metro 应用程序(HTML5)? 正如我所描述的那样, html5 地铁应用程序由典型的网络文件( html/ js/ css/ images) 和一个列表文件组成。 能否简单地用所需文件连接一个目录, 并将它用作应用程序? 或者我离它很远吗?

向维多问好

最佳回答

有关PowerShell脚本的信息,您可以用来包装和部署一个应用程序,然后从启动屏幕上运行,可在http://social.msdn.microft.com/Forus/en-US/toolsforwinaps/thread/5013262a-2a18-4ce6-99d1-03451d6c9619 上找到。问题在于,这在调试中赢得了非常远的距离,这是VS这样的工具的最大值之一。 (不要忘记Blend...这是调和调试 CSS的极好工具)。

我听说过人们确实被VS(包括我自己)吓跑了,但是Win8快递版是直截了当的,而你对JS、WinJS和WinRT的IntelliSense 感知非常有帮助。我提到调试了吗?

说实话,当我们在2010年12月第一次能够写下地铁风格应用程序时,我们只有PowerShell脚本来做这一切,而且事实上,我们确实在Notapd中写了代码。在浏览器中用 F12 工具调试 HTML 和脚本非常痛苦,但随后你却无法使用 WinRT APIs。渐渐的VS 变得更好,值得花一些时间学习,以取代Win8 平台上的其他 IDE 。

问题回答

是的,这是可能的。有一个非常好的教程 < a href=> http://peterdn.com/ post/ To-Make-a-Metro-Appx-Package- from- scratch-you- must-first-e280a6.aspx>。 它使用C# 而不是 HTML5/JavaScript, 但大部分内容都是一样的。 它的写法是给 Windows 8 的 CTP 发布而写的, 所以有几样东西随着发布预览而改变, 但它应该是一个很好的起点 。





相关问题
Why running a service as Local System is bad on windows?

I am trying to find out the difference between difference service account types. I tumbled upon this question. The answer was because it has powerful access to local resources, and Network Service ...

Programmatically detect Windows cluster configuration?

Does anyone know how to programatically detect that a Windows server is part of a cluster? Further, is it possible to detect that the server is the active or passive node? [Edit] And detect it from ...

get file icon for Outlook appointment (.msg)

I ve read Get File Icon used by Shell and the other similar posts - and already use SHFileInfo to get the associated icon for any given extension, and that works great. However, Outlook uses ".msg" ...

Identifying idle state on a windows machine

I know about the GetLastInputInfo method but that would only give me the duration since last user input - keyboard or mouse. If a user input was last received 10 minutes ago, that wouldn t mean the ...

Terminating a thread gracefully not using TerminateThread()

My application creates a thread and that runs in the background all the time. I can only terminate the thread manually, not from within the thread callback function. At the moment I am using ...

热门标签