Commit aacf388c kwwwvagaa

修改顺序

1 个父辈 57a8ef89
......@@ -576,7 +576,6 @@ namespace HZH_Controls.Controls
row.RowHeight = m_rowHeight;
item.Visible = true;
item.Width = panHead.Width;
item.BringToFront();
Rows.Add(row);
row.RowIndex = Rows.IndexOf(row);
......@@ -606,7 +605,6 @@ namespace HZH_Controls.Controls
Control rowControl = (row as Control);
rowControl.Width = panHead.Width;
row.RowHeight = m_rowHeight;
rowControl.Dock = DockStyle.Top;
row.CellClick += (a, b) => { SetSelectRow(rowControl, b); };
row.CheckBoxChangeEvent += (a, b) => { SetSelectRow(rowControl, b); };
row.RowCustomEvent += (a, b) => { if (RowCustomEvent != null) { RowCustomEvent(a, b); } };
......@@ -614,8 +612,6 @@ namespace HZH_Controls.Controls
Rows.Add(row);
row.RowIndex = Rows.IndexOf(row);
this.panRow.Controls.Add(rowControl);
rowControl.BringToFront();
}
}
......
支持 Markdown 格式
你添加了 0 到此讨论。请谨慎行事。
Finish editing this message first!