C#窗体DataGridView所选单元格正在清除单元格值



我正在开发一个预订系统。我使用多个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);
}    
}
}

但是,如果以这种方式输入单元格的值,则在选择该单元格时,该值将被清除。

禁用DGV或使DGV行只读可以解决此问题,但我希望保留选择单元格的功能。

问题是通过使用DataGridViewCellStyle.value 设置单元格值而产生的

bookedCell.Value = "Gravity ASD";

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

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

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

如果它的行后被添加到DGV,它会给我一个异常消息:Index超出范围。必须是非负的并且小于集合的大小

有没有其他方法可以将值添加到单元格中,或者有没有方法可以阻止清除所选单元格值?

看起来你可能会让这件事变得更加复杂。然而;我可能不理解这些要求。经过一些小测试后,最突出的ODD是代码将行添加到网格中的方式。从…开始

DataGridViewRow row = new DataGridViewRow(); … ? …

这很奇怪,可能会奏效;然而,这是不必要的,而且正如您所描述的,它似乎正在创建一些奇怪的行为。

我认为,由于您已经有了带有列的DataGridViewroomSchedule,您可能希望从"the GRID"中获得"NEW ROW",而不是从头开始创建新行。类似…

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

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

DataGridViewCell bookedCell = row.Cells[0];

这些更改似乎使网格按预期运行。如果我错过了什么,我很抱歉,我希望这是有意义的。

相关内容

  • 没有找到相关文章

最新更新