gpt4 book ai didi

.net - 重用 OpenFileDialog

转载 作者:行者123 更新时间:2023-12-01 06:00:55 26 4
gpt4 key购买 nike

每个文本框旁边有 2 个文本框和 2 个按钮 [...]。是否可以使用一个 OpenFileDialog 并将 FilePath 传递到相应的文本框,基于单击哪个按钮?即...如果我单击第一个按钮并打开对话框,当我在对话框上单击“打开”时,它会将文件名传递给第一个文本框。

最佳答案

每当您认为“有共同的功能!”你应该考虑一种方法来实现它。它可能看起来像这样:

    private void openFile(TextBox box) {
if (openFileDialog1.ShowDialog(this) == DialogResult.OK) {
box.Text = openFileDialog1.FileName;
box.Focus();
}
else {
box.Text = "";
}
}

private void button1_Click(object sender, EventArgs e) {
openFile(textBox1);
}

关于.net - 重用 OpenFileDialog,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2060552/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com