2

我试图显示货币汇率,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 = 
}
4

2 回答 2

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;
于 2013-07-22T15:15:45.467 回答
0

你在寻找这样的东西吗?

double[,] value = new double[,] { { 1, 1.24 }, { 0.8, 1 } };
Label1.Text = value[Combobox1.SelectedIndex, Combobox2.SelectedIndex].ToString();
于 2013-07-22T15:18:23.620 回答