如何在 C# Silverlight 4.0 应用程序中使用串口?
如何在 Silverlight 4.0 应用程序中使用串行端口?
How can I use serial port in a Silverlight 4.0 application?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
如何在 Silverlight 4.0 应用程序中使用串行端口?
How can I use serial port in a Silverlight 4.0 application?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(2)
在 Silverlight 4 中,这只能通过 COM 实现,并且只能在浏览器之外实现。
这是一篇文章,展示了如何做到这一点。
Silverlight 运行时禁止在浏览器中或直接使用。
In Silverlight 4, this is only possible via COM, and only out of browser.
Here is an article showing how it can be done.
Usage while in-browser or directly is prohibited by Silverlight's runtime.
使用 P/Invoke 和 Silverlight 5 直接与 Win32 库对话。基本上你重写了.NET SerialPort 类。这正是我所做的。
Use P/Invoke with Silverlight 5 to talk to Win32 libraries directly. Basically your re-writing the .NET SerialPort class. That's exactly what Ive done.