如何以编程方式在 Windows Phone 中复制/粘贴?

发布于 2024-11-03 03:10:47 字数 388 浏览 0 评论 0原文

可能的重复:
可以使用新的 WP7 剪切和粘贴功能吗以编程方式?

有没有一种方法可以以编程方式在 Windows Phone 中复制/粘贴文本。我希望用户单击一个按钮,该按钮应该自动将一些文本复制到剪贴板。文本驻留在 TextBlock 控件上(可能是隐藏的)。我想到的唯一解决方法是弹出一个对话框,其中在 TextBlock 中填充文本(本身支持复制粘贴)。

想法?

Possible Duplicate:
Can the new WP7 cut and paste functionality be used programatically?

Is there a way to programmatically copy/paste text in windows phone. I want the user to click on a button that should automatically copy some text to the clipboard. The text resides on a TextBlock control (which may be hidden). The only workaround that I have thought of is to pop a dialog with the text filled in in a TextBlock (which natively supports copy paste).

Thoughts?

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

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

发布评论

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

评论(1

谎言月老 2024-11-10 03:10:47

设置文本: Clipboard.SetText("foo-bar")

检查剪贴板是否包含文本: Clipboard.ContainsText("foo-bar")

没有方法获取text Clipboard.GetText() 导致安全异常

To set text : Clipboard.SetText("foo-bar")

To check if clipboard contains text : Clipboard.ContainsText("foo-bar")

No method to to get text Clipboard.GetText() results in Security Exception

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