3

我有一个简单的 Windows 窗体应用程序(带有一个 Access 数据库),它带有一个组合框 (cmbStores),它以可以想象的最简单的方式填充。

问题:我无法获取所选项目的值。

这是我填充此组合框的方式:

// Variable declaration
        string strQueryStores = "SELECT StoreNumber FROM tblStoresAndRegion ORDER BY StoreNumber";
        string strConnectionString = UtilityClass.GetConnectionString();
        OleDbConnection connStores;
        OleDbDataReader readerStores = null;

        connStores = new OleDbConnection(strConnectionString);

        try
        {
            connStores.Open();
            OleDbCommand sqlGetStores = new OleDbCommand(strQueryStores, connStores);

            cmbStore.Items.Clear();
            cmbStore.Items.Add("All");
            if (connStores != null)
            {
                readerStores = sqlGetStores.ExecuteReader();

                if (readerStores.HasRows)
                {
                    while (readerStores.Read())
                    {
                        cmbStore.Items.Add (Convert.ToInt32(readerStores["StoreNumber"]));
                    }
                }
            }
            cmbStore.SelectedIndex = 0;

        }

        catch (OleDbException oledblEX)
        {
            MessageBox.Show(oledblEX.Message);
        }

        finally
        {
            if (readerStores != null)
                readerStores.Close();
            if (connStores != null)
                connStores.Close();
        }

这就是我试图获取所选项目的价值的方式。

int nStoreNumber = Convert.ToInt32(cmbABSM.SelectedItem);
4

4 回答 4

4

尝试使用SelectedValueifValueMember为组合框设置,否则默认为该Text属性:

//If ValueMember is set
int nStoreNumber = Convert.ToInt32(cmbABSM.SelectedValue);

//Otherwise
int nStoreNumber = Convert.ToInt32(cmbABSM.Text);

无论哪种方式,我都建议您确保所选内容的值是有效的int.

int nStoreNumber;

if (!int.TryParse(cmbABSM.SelectedValue, out nStoreNumber))
{
    //This is not a valid number.  Notify the user.
}
于 2012-04-25T15:27:08.703 回答
4

我知道我有点晚了,但这很好用:

int? nStoreNumber = cmbABSM.SelectedValue as int?;
if (nStoreNumber==null)
    return;
于 2012-08-22T21:23:34.573 回答
2

Int32.Parse(box.SelectedItem.ToString());

为你工作?

于 2012-04-25T15:27:53.820 回答
1

您可以使用 SelectedItem.Value 或 SelectedValue,实际区别在于它们在没有选择时返回的内容。

SelectedItem.Value 返回值,如果没有选中项将返回 null。

SelectedValue 也返回值,但如果没有选中项,将返回一个空字符串

进一步阅读:

http://msdn.microsoft.com/en-us/library/system.web.ui.webcontrols.listcontrol.selecteditem.aspx

http://msdn.microsoft.com/en-us/library/system.web.ui.webcontrols.listcontrol.selectedvalue.aspx

于 2012-04-25T15:33:48.910 回答