C#for combobox中的循环

时间:2013-07-22 15:11:03

标签: c# arrays combobox

我尝试在label1上显示货币汇率,但我无法弄清楚应该在label1.Text =中输入什么。所以有人可以指导我

String[] arr = new string[2];

arr[0] = "US"
arr[1] = "SG"

Combobox1.Items.AddRange(arr);
Combobox2.Items.AddRange(arr);

combobox1combobox2

double[,] value = new double [2,2];

for(int I =0; I<2; I++)
{
   value[0,0] = 1; // basically if I chose Combobox1 US and Combobox2 US the rate is 1;
   value[0,1] = 1.24; // US to SG
   value[1,0] = 0.80; // SG to US
   value[1,1] = 1; // SG to SG

   Label1.Text = 
}

2 个答案:

答案 0 :(得分:0)

我假设您要打印出值(1,1.24,0.08或1)。

您可以做的是创建一个变量并使用if语句设置其值,然后在Label1中打印该值

double labelValue;

if (value[0,0]) labelValue = 1;
else if (value[0,1]) labelValue = 1.24;
else if (value[1,0]) labelValue = 0.80;
else if (value[1,1]) labelValue = 1;

Label1.Text = labelValue;

答案 1 :(得分:0)

你在找这样的东西吗?

double[,] value = new double[,] { { 1, 1.24 }, { 0.8, 1 } };
Label1.Text = value[Combobox1.SelectedIndex, Combobox2.SelectedIndex].ToString();