无法在 datagridview 中打开浏览

发布于 2024-12-07 21:19:12 字数 652 浏览 0 评论 0原文

如图所示,我有一个 DataGridView,当我单击“从文件浏览”时,必须打开 OpenFileDialog。我相信如果我在 Button_Click 方法下编写代码,但我不知道在哪种方法下编写代码,则没有办法成为可能。请帮忙。

在此处输入图像描述

到目前为止我已经做到了:(希望有帮助)

string[] col2 = new string[dataGridView1.Rows.Count];

        for (int i = 0; i < dataGridView1.Rows.Count; i++)

            if (col2[i] == "Browse From File...")
            {
                DialogResult result2 = openFileDialog2.ShowDialog();
                if (result2 == DialogResult.OK)
                {
                     filename = openFileDialog1.FileName;
                }
            }

I have a DataGridView as seen in the picture and a OpenFileDialog has to open when I click on "Browse from file". I believe there is no way to become possible if i write my code under the button_Click methods but i dont know under which method to write my code. Please help.

enter image description here

As far as now I have made this: (hope it helps)

string[] col2 = new string[dataGridView1.Rows.Count];

        for (int i = 0; i < dataGridView1.Rows.Count; i++)

            if (col2[i] == "Browse From File...")
            {
                DialogResult result2 = openFileDialog2.ShowDialog();
                if (result2 == DialogResult.OK)
                {
                     filename = openFileDialog1.FileName;
                }
            }

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

叹沉浮 2024-12-14 21:19:12

将代码放入 DataGridView.CellValueChanged 事件中。使用 SelectedCells 属性查找当前单元格,然后检查其值是否为“从文件浏览...”。如果是这样,请关闭 OpenFileDialog.ShowDialog() 调用。

有关 CellValueChanged,请参阅此文档: http://msdn .microsoft.com/en-us/library/system.windows.forms.datagridview.cellvaluechanged.aspx

Place your code in the DataGridView.CellValueChanged event. Use the SelectedCells property to find the current cell, then check if its value is "Browse From File...". If so, fire off the OpenFileDialog.ShowDialog() call.

See this documentation for CellValueChanged: http://msdn.microsoft.com/en-us/library/system.windows.forms.datagridview.cellvaluechanged.aspx

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文