0

我在 Winforms 项目的元素宿主内使用 WPF 文本框。

我想将此文本框数据绑定到绑定源,就像使用标准 winforms 文本框一样,如下所示:

    Me.tbxCorrectiveAction.DataBindings.Add("Text", bgsTasks, "CorrectiveAction", False)

这是我尝试过的:

    Dim host As New System.Windows.Forms.Integration.ElementHost()
    Dim wpfTextBox As New System.Windows.Controls.TextBox()
    wpfTextBox.SpellCheck.IsEnabled = True

    host.Dock = DockStyle.Fill
    host.Child = wpfTextBox
    Me.Panel8.Controls.Add(host)

    Dim binCorrectiveAction As New System.Windows.Data.Binding("CorrectiveAction")
    binCorrectiveAction.Source = bgsTasks
    wpfTextBox.SetBinding(System.Windows.Controls.TextBlock.TextProperty, binCorrectiveAction)

VB 或 C# 中的解决方案都很好。

4

1 回答 1

1

试试这个:

更新

您的代码中有错误(或者只是一个拼写错误,这会导致逻辑错误)。
您正在尝试在TextBox控件上绑定TextBlock .TextProperty 。

应该有TextBox.TextProperty

        var dataTable = new DataTable();

        dataTable.Columns.Add("Id", typeof(Int32));
        dataTable.Columns.Add("Name", typeof(String));

        dataTable.Rows.Add(1, "John");
        dataTable.Rows.Add(2, "Mary");
        dataTable.Rows.Add(3, "Peter");
        dataTable.Rows.Add(4, "Helen");

        var bindingSource = new BindingSource();
        bindingSource.DataSource = dataTable;

        var binding = new System.Windows.Data.Binding("Name");
        binding.Source = bindingSource;
        binding.UpdateSourceTrigger = System.Windows.Data.UpdateSourceTrigger.PropertyChanged;

        var textBox = new System.Windows.Controls.TextBox();
        textBox.SpellCheck.IsEnabled = true;
        textBox.SetBinding(System.Windows.Controls.TextBox.TextProperty, binding);

        elementHost1.Child = textBox;

原因是这些依赖属性(和控件)是不同的,尽管它们具有相似的名称。

如果不是错字,那么我建议您在此处阅读有关 WPF 依赖属性机制的信息。

于 2012-08-21T11:42:45.477 回答