将 UIElement 绑定到 viewModel
我有一个简单的视图,包含一个 Richtextbox 和一个按钮。我想在 RTB 中输入文本,然后单击按钮让 viewmodel 打印 RTB。
我从视图打印按钮设置了命令,并且在我的视图模型中有一个 UIElement
属性。
我的问题是如何将 RTB 直接绑定到 viewModel 中的 UIElement 属性?
我可以将 RTB 的各个属性连接起来,但是整个控件呢?
I have a simple view containing a richtextbox and a button. I want to enter text into my RTB and on clicking my button have viewmodel print the RTB.
I have my command set up from the views print button and in my viewmodel have a UIElement
property.
My question is how do I bind the RTB directly to my UIElement property in viewModel?
I'm fine with hooking individual properties of the RTB up but what about the whole control?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不确定如何使用数据绑定来实现这一点,手动设置引用怎么样?
...虽然我不确定你为什么要在虚拟机中执行类似的任务。只在视图中处理怎么样?否则,您可能还会遇到“对话必须由用户启动”类型的错误。
Not certain how you might accomplish that using databinding, how about just setting the reference manually?
... although I'm not sure why you want to perform a task like that in the VM. How about just handling it in the view? Otherwise you might also encounter "dialogue must be user initiated" type errors.