如何在WPF中绑定Windows控件?

发布于 2024-09-08 04:55:09 字数 174 浏览 2 评论 0原文

我正在使用 WPF 4.0。我有一个 WPF 数据网格。我在数据网格中的列之一是模板列。在该模板列中,我使用了 Win forms Textbox,我的问题是,

  1. 如何在 WPF 中绑定该 win forms texbox 控件?
  2. 如何在代码隐藏 (c#) 中访问该控件或列?

I'm using WPF 4.0. I have a WPF Datagrid. One of my column in a datagrid is a template column. In that template column I have used Win forms Textbox and my problem is that,

  1. How to bind that win forms texbox control in WPF?
  2. How to access that control or column in Code behind (c#)?

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

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

发布评论

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

评论(1

人海汹涌 2024-09-15 04:55:12

您不能将 WPF 数据绑定与 WinForms 控件一起使用,WPF 数据绑定需要依赖属性和 FrameworkElement 派生对象 - 两者都是 WPF 的一部分,在 WinForms 中不可用。

WinForms有自己的数据绑定系统,它与WPF的数据绑定完全不兼容(在某些情况下它也较弱且无法使用)。

如果您想使用 WPF 的数据绑定,则必须仅使用 WPF 控件。

我建议您要么使用 WPF TextBox,要么将整个网格切换到 WinForms 并使用 DataGridView。

顺便说一句 - 我不会将 WinForms 控件放入 WPF 数据网格(或任何其他项目控件)中 - 我怀疑这将来会给您带来很多麻烦。

You can't use WPF data binding with WinForms controls, WPF data binding requires dependency properties and FrameworkElement derived objects - both are part of WPF and not available in WinForms.

WinForms has it's own data binding system, it's completely incompatible with WPF's data binding (it's also weaker and unusable in some cases).

If you want to use WPF's databinding you have to use only WPF controls.

I suggest you either use the WPF TextBox or switch the entire grid to WinForms and use DataGridView.

by the way - I wouldn't put a WinForms control inside a WPF data grid (or any other items control) - I suspect this will give you a lot of trouble in the future.

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