原文出处:http://www.syncfusion.com/FAQ/WinForms/FAQ_c44c.asp#q874q
1。我怎样用程序设置DataGrid其中某行的rowheight (原文http://www.syncfusion.com/FAQ/WinForms/FAQ_c44c.asp#q1075q)
可以通过映射来访问DataGrid的内部没公共申明的(public)Row对象,此方法在Matthew Benedict 的一次私人交流上提到。
这个包含vb和c#的工程文件示意了这个方法的实现,例子提供了通过DataGrid创建rowHeight对象的一个类,在创建了这个对象后,可以用此对象的索引器来设置或提取一行的高度。
2。我的DataGrid如何自动设置rowheights
Matthew Benedict的一个建议的解决办法:通过映射访问保护的DataGridRows集合来设置行高。
public void AutoSizeGrid()
{
// work. 这里这部分DataGrid必须绑定到DataTable
int numRows = ((DataTable)gridTasks.DataSource).Rows.Count;
Graphics g = Graphics.FromHwnd(gridTasks.Handle);
StringFormat sf = new StringFormat(StringFormat.GenericTypographic);
SizeF size;
// 因为DataGrid中DataGridRows[]没有直接暴露
// 我们需要用到映射机制.. 下面的get_DataGridRows方法返回我们正需要的行集合 并投射到System.Array
MethodInfo mi = gridTasks.GetType().GetMethod("get_DataGridRows",
BindingFlags.FlattenHierarchy | BindingFlags.IgnoreCase | BindingFlags.Instance
| BindingFlags.NonPublic | BindingFlags.Public | BindingFlags.Static);
System.Array dgra = (System.Array)mi.Invoke(gridTasks,null);
// 转换为ArrayList,一种更容易处理的方式,追加到我们剥离的新行。
ArrayList DataGridRows = new ArrayList();
foreach (object dgrr in dgra)
{
if (dgrr.ToString().EndsWith("DataGridRelationshipRow")==true)
DataGridRows.Add(dgrr);
}
// 循环网格中所有行
for (int i = 0; i < numRows; ++i)
{
// 这里我们讲列的宽度设置为400,此大小将包含所需的高度
size = g.MeasureString(gridTasks[i,1].ToString(),gridTasks.Font,400,sf);
int h = Convert.ToInt32(size.Height);
// 额外的网格线空间
h = h + 8;
// 现在我们将已经设置成所需高度属性的行从DataGridRows[]数组中取出
PropertyInfo pi = DataGridRows[i].GetType().GetProperty("Height");
pi.SetValue(DataGridRows[i],h,null);
// I have read here that after you set the Height in this manner that you should
// Call the DataGrid Invalidate() method, but I haven't seen any prob with not calling it..
}
g.Dispose();
}
本文地址:http://com.8s8s.com/it/it35393.htm