Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个窗体文本框和一个浏览按钮。当我单击浏览按钮时,会弹出一个文件夹选择对话框,我可以选择一个将显示在文本框中的文件夹
假设我的完整文件夹路径是“A:/somefolder/subfolder1/subfolder2”
我的文本框内容就像
但我希望我的文本框看起来像
提前致谢。
这就是文本框的内部设计方式,但作为一种解决方法,您可以这样做:
if(folderBrowserDialog.ShowDialog() == System.Windows.Forms.DialogResult.OK) { textbox1.Text = folderBrowserDialog.SelectedPath; textbox1.Select(textBox1.Text.Length - 1, 1); // puts the cursor at end of textbox }