我正在使用c#Windows窗体,并且将excelfile导入listView,这是我使用listview的原因,因为对我来说,这对我来说更方便,并且对此数据表感到满意。
所以我的问题是如何将Excel文件的选定列和行导入列表视图?因为我的Excel文件具有格式。
这是我的Excel文件。 在这张照片中,我想将所有名称和每季度等级导入到我的列表视图中。
这是我在Listview中的项目
Here 这是我的OpenFileDialog代码
public static string path = "";
private void button2_Click(object sender, EventArgs e)
{
OpenFileDialog fdlg = new OpenFileDialog();
fdlg.Title = "Select file";
fdlg.InitialDirectory = @"c:\";
fdlg.FileName = txtFileName.Text;
fdlg.Filter = "Excel Sheet(*.xlsx)|*.xlsx|All Files(*.*)|*.*";
fdlg.FilterIndex = 1;
fdlg.RestoreDirectory = true;
if (fdlg.ShowDialog() == DialogResult.OK)
{
path = textBox1.Text;
txtFileName.Text = fdlg.FileName;
Application.DoEvents();
}
}
这是我用于将excel数据导入到listView的代码
string Name = "";
for (int b = 0; b < listView1.Items.Count; b++)
{
Name = listView1.Columns[1].Text;
ListViewItem lvis = new ListViewItem();
string connStr = "Provider=Microsoft.ACE.OLEDB.12.0;Data Source=" + txtFileName.Text + ";Extended Properties=Excel 12.0;";
DataTable table = new DataTable();
string excelName = "2nd";
string strConnection = string.Format(connStr);
OleDbConnection conn = new OleDbConnection(strConnection);
conn.Open();
OleDbDataAdapter oada = new OleDbDataAdapter("select * from [" + excelName + "$]", strConnection);
table.TableName = "TableInfo";
oada.Fill(table);
conn.Close();
// Clear the ListView control
listView1.Items.Clear();
//for (int i = 0; i < table.Columns.Count; i++)
// Display items in the ListView control
for (int i = 0; i < table.Rows.Count; i++)
{
DataRow drow = table.Rows[i];
// Only row that have not been deleted
if (drow.RowState != DataRowState.Deleted)
{
// Define the list items
ListViewItem lvi = new ListViewItem(drow["Quarter"].ToString());
lvi.SubItems.Add(drow["Male"].ToString());
lvi.SubItems.Add(drow["Female"].ToString());
// Add the list items to the ListView
listView1.Items.Add(lvi);
}
}
如果你们建议我很好地使用datagrid,那么只要它能很好地工作对我来说也很好。先感谢您!