JScript.NET 设计 IDE

发布于 2024-09-18 21:04:24 字数 222 浏览 4 评论 0原文

我目前正在将 JScript.NET 用于小型 UI 应用程序。问题是我的 Visual Studio Express 不支持 JScript.NET 设计 UI。是否有免费的 IDE 可用于设计 UI 并生成有效的 JScript.NET 代码?

我只需要 IDE 设计功能来设计应用程序,仅此而已。

目前我正在做的是将它生成的非常相似的 C# 代码转换为 JScript.NET,但这有点烦人。

I'm currently using JScript.NET for a small UI application. The problem is that my Visual Studio Express doesn't support JScript.NET for designing the UI. Is there a free IDE that I can use to design my UI and produce valid JScript.NET code?

I just need the IDE Design functionality to Design the application, that's it.

Currently what I'm doing is converting the very similar C# code that it generates, over to JScript.NET, but It's kind of getting annoying.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

飘过的浮云 2024-09-25 21:04:24

我使用 VS2008 c# for 设计器
它似乎工作正常...

我在 VS2008 中为 C# 创建了表单设计

,我找到了设计器创建的源代码...

复制并粘贴到我的 JScript 中...

然后我必须更改 VAR
ex

c#

private System.Windows.Forms.WebBrowser webBrowser1;

jscript

private var webBrowser1 : System.Windows.Forms.WebBrowser;

我还检查编译时的输出。只是为了解决任何其他转换问题

I use the VS2008 c# for designer
it seems to work OK...

i create the Form Design inside VS2008 for c#

i get to the source the designer crated...

Copy and paste into my JScript...

then i have to change the VARs
ex

c#

private System.Windows.Forms.WebBrowser webBrowser1;

jscript

private var webBrowser1 : System.Windows.Forms.WebBrowser;

i also check the output on compile. just to fix any other conversion problems

任谁 2024-09-25 21:04:24

所以似乎没有任何 JScript.NET IDE。如果您只是想设计应用程序,则只需为 UI 生成 C# 或任何代码,然后从中生成 .dll 即可。然后您可以在 JScript.NET 代码中使用该 dll。

这就是我正在做的事情,而且效果很好...跨不同语言共享 dll 真是太棒了!热爱.NET!

So there doesn't seem to be ANY JScript.NET IDE out there. If you're just looking to design your application, you can just produce the C# or whatever code for the UI and generate a .dll out of that. Then you can use that dll from you JScript.NET code.

This is what I'm doing and it works great... it's awesome how you can share dlls across different languages! Loving .NET!

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文