我有一個最大值爲「9」的滑塊。每個值都應改變標籤的文字。 我只能想到這個方法現在:縮短「if,else」函數的代碼
private void Slider_Scroll(object sender, EventArgs e)
{
if (Slider.Value == 0)
{
Label.Text = "Text1";
}
else if (Slider.Value == 1)
{
Label.Text = "Text2";
}
//...and so on...
}
是否有在較短的方式做到這一點的方法?
你試過switch語句? – Nithesh
沒有。就像我說的那樣,我只能想到那個時候顯示的方法。我對C#還很陌生。 – HitomiKun