使用C#winform的预订系统

本文关键字:系统 C#winform 使用 | 更新日期: 2023-09-27 18:19:48

有人可以帮忙吗?

如何使用数据库数据更改按钮的背景颜色。例如,当我将特定按钮设置为保留或已预订状态时,背景颜色应变为红色。

使用C#winform的预订系统

您需要使用SQLConnection对象或适当的类(取决于您的数据库)来建立与数据库的连接。

例如:

bool isReserved;
using (SqlConnection connection = new SqlConnection(connectionString)
using (SqlCommand command = new SqlCommand("SELECT isReserved FROM YourTable WHERE BookingId = 1", connection))
{
    connection.Open();  
    using (SqlDataReader reader = command.ExecuteReader())
    {
        while (reader.Read())
        {
            isReserved = (bool)reader["isReserved"];
        }
    }
}

然后可以使用BackColor属性。

if (isReserved) {
    Button1.BackColor = Color.Red; 
}

假设按钮的idButton1,则可以执行:

Button1.BackColor=彩色红色