我正在尝试使用 C# 创建一个类似于 Dotnet IDE 的 Windows 应用程序
我正在尝试使用 C# 创建一个类似于 Dotnet IDE 的 Windows 应用程序。当我谷歌搜索时,我找到了一些解决方案,但这并不完全是我想要的。任何人有任何想法或有任何参考,请与我分享。
提前致谢。
I am trying to create an windows application using c# look like Dotnet IDE. when i googling i have found some solution but that is not exact what i want. Anyone have any idea or have any refernce please share it with me.
Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您的问题并不完全清楚,但如果您正在寻找某种具有与 Visual Studio 相同控件的 .NET UI 库(这就是您所说的“Dotnet IDE”的意思吗?),您不太可能找到。这是因为 Visual Studio 本身不是用 .NET 编写的 - 它是用非托管 C++ 编写的。
当然,可以创建外观和工作方式相同的控件,但我不知道有任何类似的库。
Your question is not entirely clear, but if you're looking for some kind of a .NET UI library with the same controls as Visual Studio (is that what you mean by "Dotnet IDE"?) you're unlikely to find one. This is because Visual Studio itself is not written in .NET - it's written in unmanaged C++.
Of course, it's possible to create controls that look and work the same way, but I'm not aware of any libraries like that.