C# Winforms DataGridView 选中的单元格正在清除单元格值

C# Winforms DataGridView selected cell is clearing cell value

我正在开发一个预订系统。我正在使用多个 DGV,根据 DGV 中的 30 分钟插槽单元,直观地显示不同房间的预订插槽,每个房间都有自己的 DGV。我在每个房间上使用了一个 foreach 语句来创建一个新的 DGV,适当地更改属性,为每个时间段添加行,如果它们与预订时间匹配,更改单元格颜色和值,然后再将其添加到 DGV 并将 DGV 添加到表格。

这个代码是:

public partial class BookingSystem : Form
{
    List<string> RoomList = new List<string>();


    public BookingSystem()
    {
        InitializeComponent();

        this.Text = "Booking System - " + DateTime.Today.DayOfWeek.ToString() + " " + DateTime.Today.ToString("dd MMM yyyy");

        RoomList.Add("Community Room 3");
        RoomList.Add("Community Room 2");
        RoomList.Add("Community Room 1");
        RoomList.Add("Sports Hall");
        //RoomList.Add("New Room");

        DateTime bookingStart = DateTime.Parse("23/11/2021 10:30:00");
        DateTime bookingStart2 = DateTime.Parse("23/11/2021 11:00:00");
        DateTime bookingEnd = DateTime.Parse("23/11/2021 11:30:00");

        this.Width = 1080;

        foreach (string room in RoomList)
        {
            DataGridViewCellStyle dgvCellStyle = new DataGridViewCellStyle();
            Color color = Color.FromArgb(255, 224, 224, 224);
            dgvCellStyle.BackColor = color;

            DataGridView roomSchedule = new DataGridView();

            roomSchedule.Dock = DockStyle.Left;
            roomSchedule.Width = 200;
            roomSchedule.Columns.Add(room, room);
            roomSchedule.Columns[0].Width = 135;
            roomSchedule.RowHeadersWidth = 63;
            roomSchedule.AlternatingRowsDefaultCellStyle = dgvCellStyle;
            roomSchedule.RowHeadersBorderStyle = DataGridViewHeaderBorderStyle.Raised;
            roomSchedule.ColumnHeadersBorderStyle = DataGridViewHeaderBorderStyle.Single;
            //roomSchedule.ReadOnly = true;
            roomSchedule.SelectionMode = DataGridViewSelectionMode.RowHeaderSelect;
            roomSchedule.AllowUserToResizeRows = false;

            DateTime openingTime = DateTime.Parse("07:00");
            DateTime closingTime = DateTime.Parse("22:00");
            TimeSpan openingHours = closingTime - openingTime;
            DateTime currentTimeSlot = openingTime;
            double totalRows = openingHours.TotalMinutes / 30;

            int rows = 0;

            while (rows <= totalRows)
            {
                DataGridViewRow row = new DataGridViewRow();

                DataGridViewCellStyle bookedCellStyle = new DataGridViewCellStyle();
                bookedCellStyle.BackColor = Color.Moccasin;
                DataGridViewCell bookedCell = new DataGridViewTextBoxCell();
                bookedCell.Value = "Class Name";
                bookedCell.Style = bookedCellStyle;
                
                row.HeaderCell.Value = currentTimeSlot.ToString("HH:mm");
                roomSchedule.Rows.Add(row);
                
                if (currentTimeSlot.TimeOfDay == bookingStart.TimeOfDay || currentTimeSlot.TimeOfDay == bookingStart2.TimeOfDay)
                {
                    if (room == "Sports Hall")
                    {
                        row.Cells[0] = bookedCell;
                        //row.Cells[0].Value = "Class Name";
                    }
                }

                currentTimeSlot = currentTimeSlot.AddMinutes(30);

                roomSchedule.RowsDefaultCellStyle.SelectionBackColor = System.Drawing.Color.Transparent;
                rows++;
            }
            
            dgvBox.Controls.Add(roomSchedule);
        }    
    }
}

但是,当以这种方式输入单元格的值时,只要单元格被 selected,该值就会被清除。

禁用 DGV 或将 DGV 行设置为只读可以解决此问题,但我想保留 select 个单元格的功能。

问题是通过使用 DataGridViewCellStyle.Value

设置单元格值造成的
bookedCell.Value = "Gravity ASD";

但我找不到任何其他方法来设置单元格值,如使用:

row.Cells[0].Value = "Class Name";

在将行添加到 DGV 之前,给我这个异常消息:指定的参数超出了有效值的范围

如果它在行添加到 DGV 之后,它会给我这个异常消息:索引超出范围。必须为非负且小于集合的大小

有没有办法以其他方式将值添加到单元格或阻止清除 selected 单元格值的方法?

看来您可能把事情搞得比实际情况更复杂了。然而;我可能不明白这些要求。经过一些小测试后,代码将行添加到网格的方式是 ODD。从…

开始
DataGridViewRow row = new DataGridViewRow(); … ? …

这很奇怪,但可能有用;但是,这是不必要的,而且它似乎会造成一些奇怪的行为,正如您所描述的那样。

我认为既然您已经有了 DataGridViewroomSchedule WITH 列,您可能希望从“THAT GRID”中获得“NEW ROW”而不是创建一个从头开始的新行。像……

int rowIndex = roomSchedule.Rows.Add();
DataGridViewRow row = roomSchedule.Rows[rowIndex];

同样的想法也适用于行中的“CELL”。没有必要“创建”一个新的,因为我们从网格中得到的行已经有一个单元格。我希望这是有道理的。

DataGridViewCell bookedCell = row.Cells[0];

这些更改似乎使网格按预期运行。对不起,如果我遗漏了什么,我希望这是有道理的。