禁止调整温差图例表的行高

This commit is contained in:
zqm
2025-11-10 09:53:37 +08:00
parent b45c807e80
commit 88fd50290c

View File

@@ -91,6 +91,8 @@ namespace JoyD.Windows.CS
dataGridViewTempDiff.ReadOnly = true; dataGridViewTempDiff.ReadOnly = true;
// 禁止用户添加新行 // 禁止用户添加新行
dataGridViewTempDiff.AllowUserToAddRows = false; dataGridViewTempDiff.AllowUserToAddRows = false;
// 禁止用户调整行高
dataGridViewTempDiff.AllowUserToResizeRows = false;
// 添加列:温差值 // 添加列:温差值
DataGridViewTextBoxColumn columnTempDiff = new DataGridViewTextBoxColumn DataGridViewTextBoxColumn columnTempDiff = new DataGridViewTextBoxColumn