0

我在 Silverlight 中编写了应用程序,它从网络摄像头读取二维码。我需要将数据(粘贴纯文本)从silverlight 传递到页面上包含silverlight 的活动字段,但不在silverlight 内。有没有办法做到这一点?用户通过向网络摄像头显示 qrcode 进行交互也受到限制,而不是实际单击任何内容(剪贴板和 silverlight 的问题 - 只能在某些情况下使用)。欢迎任何建议或指导。

4

1 回答 1

1

您可以与托管 Silverlight 对象的页面进行交互。来自银光:

HtmlPage.Window.Eval(string.Format("processQrCode('{0}')", textData)

页面中应该有javascript:

function processQrCode(data) {
    // Do something with the data here
}
于 2013-03-14T21:45:12.990 回答