我将小数(来自 NHibernate 实体)绑定到 NumericUpDown。
_numUpDown.DataBindings.Add(
New Binding(
"Value",
_BindingSource,
"TheDecimal",
False,
DataSourceUpdateMode.OnPropertyChanged
)
)
这工作正常。但是,当我将 NumericUpDown 的最小值从 0 更改为 0.01 时,我收到错误消息。
来自设计师;
Me._numUpDown.Minimum = New Decimal(New Integer() {1, 0, 0, 131072})
错误;
1) System.InvalidOperationException
---------------------------------------
Message: DataBinding cannot find a row in the list that is suitable for all bindings.
Target: Void FindGoodRow()
Source: System.Windows.Forms
当最小值不为 0 时,我该怎么做才能使其绑定?