-1

假设我在组合框中填充了项目(项目是这个特定示例的一些数字),并且我想告诉 C# 类似这样的内容:在组合框中选择了IF一些item,得到它item并将其乘以2. 有什么办法可以做到这一点吗?

4

1 回答 1

2

假设它由整数列表填充。例如

for(int index = 0; index < 10; index++)
{
  myCombobox.Add(index);
}

if (myCombobox.SelectedItem != null)
{
  int value = ((int)myCombobox.SelectedItem) * 2;
}

当然是Winforms

如果它们是字符串,那将是类似的东西

if (myCombobox.SelectedItem != null)
{
  int value = int.Parse(myCombobox.SelectedItem.ToString()) * 2;
}
于 2012-08-05T22:32:50.647 回答