c#中怎么在窗体上设置一个导入文件按钮?

就是点击导入文件按钮后会弹出对话框,选择文件
2024-12-14 13:52:54
推荐回答(1个)
回答1:

给你个打嫌衫桐开文件的示例
private void openFile_Click(object sender, EventArgs e)
{//打开一个文件的button
OpenFileDialog myDLG1 = new OpenFileDialog();
if (myDLG1.ShowDialog() == DialogResult.OK)
MessageBox.Show(myDLG1.FileName);
}

具体芹坦要把这个文件干嘛,你就塌隐根据myDLG1.FileName来操作。
有困难可HI我。