コード例 #1
0
ファイル: OrderUI.cs プロジェクト: PietNeerschiet/Chapoo1819
        private void SetTableColors()
        {
            foreach (Button button in tableButtons)
            {
                button.BackColor = Color.Green;
            }

            foreach (int tafel in order_Service.GetInUseTables())
            {
                tableButtons[tafel - 1].BackColor = Color.Red;
            }
        }