本文整理汇总了C#中GridControl.RefreshDataSource方法的典型用法代码示例。如果您正苦于以下问题:C# GridControl.RefreshDataSource方法的具体用法?C# GridControl.RefreshDataSource怎么用?C# GridControl.RefreshDataSource使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类GridControl
的用法示例。
在下文中一共展示了GridControl.RefreshDataSource方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: ConvertToDataTable
private DataTable ConvertToDataTable(LinqServerModeSource data)
{
//GridView view = new GridView();
//view.DataSource = data;
GridView gv = new GridView();
GridControl gc = new GridControl();
gc.MainView = gv;
gc.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] { gv });
gc.DataSource = data;
gc.RefreshDataSource();
DataTable dt = new DataTable();
// add the columns to the datatable
GridView view = gc.FocusedView as GridView;
for (int i = 0; i < view.Columns.Count; i++)
{
dt.Columns.Add(view.Columns[i].FieldName);
}
dt.Columns["Company_Last_Contact"].DataType = typeof(DateTime);
dt.Columns["Company_Last_Contact"].AllowDBNull = true;
for (int i = 0; i < view.DataRowCount; i++)
{
DataRow dr;
dr = dt.NewRow();
for (int x = 0; x < view.Columns.Count; x++)
{
if (view.Columns[x].FieldName == "Company_Last_Contact")
{
try
{
if (view.GetRowCellValue(i, dt.Columns[x].ColumnName) != null)
{
dr[x] = Convert.ToDateTime(view.GetRowCellValue(i, dt.Columns[x].ColumnName));
}
else
{
dr[x] = DBNull.Value;
}
}
catch (Exception e)
{
m_EventBus.Notify(new FrmSalesConsultantEvents.Tracer() {
ErrorMessage = e.Message
});
dr[x] = DBNull.Value;
}
}
else
{
dr[x] = view.GetRowCellValue(i, dt.Columns[x].ColumnName);
}
}
dt.Rows.Add(dr);
}
gc.Dispose();
gc = null;
return dt;
}