0

抱歉,我是 vb.net 2010 的新手。我也是子类化的新手。组合框用作查找。

我有一个绑定到 bindingSource 的组合框。问题是在我在组合框中选择一个项目并失去焦点后,它会恢复为空白。为什么是这样?诡异的。

 My tables:
  tblUsers
  -FullName
  -UserName
  -Password
  -UserTypeID

  tblUserType
  -UserTypeID
  -UserType (Admin, Supervisor, Encoder)

  My Class Library:
  -Users.vb = table encapsulation of tblUsers
  -UserDB.vb = methods for my tblUsers

  -UserType.vb = table encapsulation of tblUserType
  -UserTypeDB.vb = methods for my tblUserType

  Data Sources:
  -UserBindingSource = Users.vb Class
  -UserTypeBindingSource = UserType.vb Class


 Databindings for my UserTypeComboBox:

    UserTypeComboBox.DataSource = UserTypeBindingSource
    UserTypeComboBox.DisplayMember = UserType
    UserTypeComboBox.ValueMember = UserTypeID
    UserTypeComboBox.SelectedValue =  UsersBindingSource - UserTypeID    

My Code Below:

 Public Class frmUsers_AddEdit    

     Private newUser As Users 
     Private usertypeList As List(Of UserType)

     Private Sub LoadComboboxes()
         Try

             usertypeList = UserTypeDB.GetUserTypeList
             UserTypeComboBox.DataSource = usertypeList

         Catch ex As Exception
             MessageBox.Show(ex.Message, ex.GetType.ToString)
         End Try

     End Sub

     Private Sub frmUsers_AddEdit_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load

         Me.LoadComboboxes()
         UsersBindingSource.Add(newUser)

     End Sub 

 end class

frmUsers_AddEdit 是我用来将用户数据添加/编辑到数据库中的表单。我还在添加阶段。还没有可编辑的代码。

组合框问题:每次我从 UserTypeCombobox(例如“编码器”)中选择一个项目时,当它失去焦点时,选择将恢复为未选中状态。:-(

4

2 回答 2

0

我想我找到了问题所在。在我的 User.vb 类中,我有一个公共属性“UserType”,在我的 UserType.vb 类中,我也有一个名为“UserType”的相同公共属性。这会引起冲突吗?

我删除了两个课程并重新开始。在我的 UserType.vb 类中,我将公共属性重命名为 Utype。之后,我在添加/编辑表单上重新配置了数据绑定。组合框问题消失了。

重复的公共属性名称是组合框失去焦点问题的原因吗?我仍然不确定这是否是真正的问题。但我很高兴我的组合框现在可以正常工作。

于 2013-07-25T09:01:40.593 回答
0

尝试给它一个原因验证值 False。如果这不起作用,也许您的 ComboBox DropDownStyle 未设置为 DropDownList

在前面的代码中将以下属性添加到您的组合框中,然后尝试

CausesValidation="false"

或者尝试在你的代码中添加这个下拉样式

ComboBox.DropDownStyle = ComboBoxStyle.DropDownList 
于 2013-07-24T15:33:10.693 回答