我很难弄清楚这一点。我想在按钮单击事件上打开一个filedialog
窗口,用户将在该窗口中选择一个 excel 文件,该文件将在 excel 中打开。
我已经创建了filebox
并且我能够让 excel 打开一个新文件,但我不知道如何让这两个文件网格化。
我正在尝试使用如下,
using Excel = Microsoft.Office.Interop.Excel;
using System.Reflection;
private void button1_Click(object sender, EventArgs e)
{
{
if (openFileDialog1.ShowDialog() == DialogResult.OK)
{
System.IO.StreamReader sr = new
System.IO.StreamReader(openFileDialog1.FileName);
MessageBox.Show(sr.ReadToEnd());
sr.Close();
}
}
}
我打算用它来打开excel
Excel.Application excel = new Excel.Application();
Excel.Workbook wb = excel.Workbooks.Open(filename);