如何以编程方式在 Windows Phone 中复制/粘贴?
有没有一种方法可以以编程方式在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
设置文本:
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