为什么我不能在我的类中创建一个简单的 WPF 字符串数据绑定?
错误:重载解析失败,因为没有可访问的“新”接受此数量的参数。
Dim s As String = "Test string"
Dim b As New Binding("Description of bind")
b.Mode = BindingMode.OneTime
b.Source = s
为什么我不能在我的类中创建一个简单的 WPF 字符串数据绑定?
错误:重载解析失败,因为没有可访问的“新”接受此数量的参数。
Dim s As String = "Test string"
Dim b As New Binding("Description of bind")
b.Mode = BindingMode.OneTime
b.Source = s
我不熟悉 VB,但看起来该行应该是:
Dim b As New Binding()
b.Path = New PropertyPath("Description of bind")
我提到了这个链接。