开发者

VB.NET Databound ComboBox need to force update in datasource when selection changes

I have a combobox where the SelectedValue on the combo is bound to a property on a business object.

Everything works fine, but the property that's bound to the SelectedValue on the combo only gets updated when the focus leaves the control. I understand that the property doesn't get updated until the control is validated (loses focus), but I need it to update the datasource as soon as the dropdown is closed.

I know I could pro开发者_JAVA百科bably leave focus from the control on the DropDownClosed event but I'd prefer something a little less kludgy.

What's the best way to immediately update my datasource when the dropdown is closed?


Set the DataSourceUpdateMode to OnPropertyChanged. Here is similar problem:

[http://social.msdn.microsoft.com/Forums/en/winformsdatacontrols/thread/bc39342b-d9b5-4ad0-bd35-073869ccf8be][1]


The way I'd do it is to set (in the events) the OnUpdate of the combo box and put in the VB.net

Me.<business object>.Requery
0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜