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)
我是 Rails 编程的新手,我正在尝试对对象进行基本保存。我的控制器中的代码如下:
def create @subject = Subject.new @subject.resource_id = params[:subject][:resource_id] @su