我的問題:Id喜歡,在選擇兩個combobox
變量後,將這兩個分開,並將Textbox
設置爲計算結果。用兩個選定的組合框項目計算textbox.text
兩個Comboboxes
:Körpergröße& Gewicht
的textbox
:BMI
首先,使用代碼IM(這顯然心不是現在的工作)
protected void Körpergröße_SelectedIndexChanged(object sender, EventArgs e)
{
int a;
int b;
//In this way you can compare the value and if it is possible to convert into an integer.
if (int.TryParse(Körpergröße.SelectedItem.ToString(), out a) && int.TryParse(Gewicht.SelectedItem.ToString(), out b))
{
fillTextBox(a, b);
}
}
protected void Gewicht_SelectedIndexChanged(object sender, EventArgs e)
{
int a;
int b;
if (int.TryParse(Körpergröße.SelectedItem.ToString(), out a) && int.TryParse(Gewicht.SelectedItem.ToString(), out b))
{
fillTextBox(a, b);
}
}
private void fillTextBox(int value1, int value2)
{
BMI.Text = (value1/value2).ToString();
}
的兩個comboboxes
的默認值是字符串..(「Bitte ausw爲hLen「)
圖片怎麼它看起來像現在。選擇兩個int值後,計算結果應顯示在BMI Textbox
中。
這將是很好,如果有人可以回答我用一些圖片的標題說明一個代碼,爲了讓我明白了..提前
謝謝!
@Sasa隨意問任何問題!:) – StepUp
@Sasa如果我的回答可以幫助解決你的問題,你可以將它作爲一個答案,以簡化未來搜索其他人。 – StepUp