Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我不确定我是否"CheckedValue"在这里使用...
"CheckedValue"
或者我必须使用"IsCheckedValue"?
"IsCheckedValue"
Dim bndg_3 As New Binding("CheckedValue") bndg_3.Source = checkbox1 MyCtrl.SetBinding(MyCtrl.CanMoveProperty, bndg_3)
哈!
我找到了!
Dim bndg_3 As New Binding("IsChecked") bndg_3.Source = checkbox1 MyCtrl.SetBinding(MyCtrl.CanMoveProperty, bndg_3)