将 UIElement 绑定到 viewModel

发布于 2024-12-13 08:32:34 字数 232 浏览 0 评论 0原文

我有一个简单的视图,包含一个 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 技术交流群。

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

发布评论

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

评论(1

不一样的天空 2024-12-20 08:32:34

不确定如何使用数据绑定来实现这一点,手动设置引用怎么样?

MyControl.Loaded += (s, e) => {
   ((ViewModel)MyControl.DataContext).UiElementProperty = MyControl;
};

...虽然我不确定你为什么要在虚拟机中执行类似的任务。只在视图中处理怎么样?否则,您可能还会遇到“对话必须由用户启动”类型的错误。

Not certain how you might accomplish that using databinding, how about just setting the reference manually?

MyControl.Loaded += (s, e) => {
   ((ViewModel)MyControl.DataContext).UiElementProperty = MyControl;
};

... 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.

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