我在程序中遇到問題。我有3個按鈕,默認顏色是白色。當我的按鈕後退顏色變成紅色時,我的程序會計算出有多少按鈕是紅色的。我有一個主意,用的foreach,但它不工作C#中的計數按鈕的顏色#
Button[] Tombol = new Button[]{B1, B2, B3}
int counterbutton = 0;
foreach (Button Tombol2.BackColor = Color.Red in Tombol) //I have problem here. I don't know how to solve
{
counterbutton++;
}
什麼是'Tombol2'的方式? –
Tombol2是Button [] Tombol中的所有按鈕:) –