积极答复者
datagridview行高的问题(vb.net)

问题
答案
-
目前还没在方法可实现,即使是很强大的Infragistics UltraGrid也没有实现你说的这个功能
专注于.NET MIS开发框架,C/S架构,SQL Server + ORM(LLBL Gen Pro) + Infragistics WinForms
- 已建议为答案 Moonlight ShengMicrosoft contingent staff 2016年6月8日 5:22
- 已标记为答案 Herro wongMicrosoft contingent staff, Moderator 2016年6月10日 7:50
-
Hi,
你可以尝试在RowHeightChanged事件中做些操作来设置行高,范例:
private void dataGridView1_RowHeightChanged(object sender, DataGridViewRowEventArgs e) { dataGridView1.RowTemplate.Height = e.Row.Height; dataGridView1.Refresh(); }
DataGridView.RowHeightChanged EventRegards,
Moonlight
We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
Click HERE to participate the survey.- 已标记为答案 Herro wongMicrosoft contingent staff, Moderator 2016年6月10日 7:50
全部回复
-
目前还没在方法可实现,即使是很强大的Infragistics UltraGrid也没有实现你说的这个功能
专注于.NET MIS开发框架,C/S架构,SQL Server + ORM(LLBL Gen Pro) + Infragistics WinForms
- 已建议为答案 Moonlight ShengMicrosoft contingent staff 2016年6月8日 5:22
- 已标记为答案 Herro wongMicrosoft contingent staff, Moderator 2016年6月10日 7:50
-
Hi,
你可以尝试在RowHeightChanged事件中做些操作来设置行高,范例:
private void dataGridView1_RowHeightChanged(object sender, DataGridViewRowEventArgs e) { dataGridView1.RowTemplate.Height = e.Row.Height; dataGridView1.Refresh(); }
DataGridView.RowHeightChanged EventRegards,
Moonlight
We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
Click HERE to participate the survey.- 已标记为答案 Herro wongMicrosoft contingent staff, Moderator 2016年6月10日 7:50