加载表单时如何最好地适合网格控件中的所有列。我确实有一个按钮,如下图所示,当我右键单击网格控件的标题时,但与此相反,我希望在加载表单时自动触发此事件。我不想通过右键单击网格控件的标题并单击“最适合(所有列)”按钮以最适合所有列的方式来执行此操作。

最佳答案

这就是我的方法。

if (view is GridView)
{
   // auto best fit...
   (view as GridView).BestFitMaxRowCount = 5000;   // just to avoid to many compares
   (view as GridView).BestFitColumns();
   foreach (GridColumn item in (view as GridView).Columns) // reduce the width of very wide columns
   {
      item.Width = (item.Width > 1000) ? 1000 : item.Width;
   }
}

10-07 19:53