observablecollection到dataView或dataset

时间:2015-05-28 06:57:35

标签: c# wpf mvvm datagrid observablecollection

我有一个通过绑定observablecollection形成的Datagrid,现在我想提供Export to excel Functiom,所以我需要通过datagrid转换为dataset或dataview。

public ObservableCollection<DataSourceVM> Backends { get; set; }
private void StartExport(String filepath)
   {
       try
     {
      DataTable bs = _dataGrid.ItemsSource as DataTable;
      _dataSet = bs.DataSet as DataSet;

   }
   catch (Exception e1)
  {
     MessageBox.Show("error");
  }
}

ItemSource包含一个基类和后端实体类

1 个答案:

答案 0 :(得分:3)

您需要手动创建数据表和所需的列。我假设列是DataSourceVM类的属性。

public ObservableCollection<DataSourceVM> Backends { get; set; }

private void StartExport(String filepath)
{
    try
    {
        var dataSet = new DataSet();
        var dataTable = new DataTable();
        dataSet.Tables.Add(dataTable);

        // we assume that the properties of DataSourceVM are the columns of the table
        // you can also provide the type via the second parameter
        dataTable.Columns.Add("Property1");
        dataTable.Columns.Add("Property2");

        foreach (var element in Backends)
        {
            var newRow = dataTable.NewRow();

            // fill the properties into the cells
            newRow["Property1"] = element.Property1;
            newRow["Property2"] = element.Property2;

            dataTable.Rows.Add(newRow);
        }

        // Do excel export
    }
    catch (Exception e1)
    {
        MessageBox.Show("error");
    }
}