12 个解决方案
#1
folderBrowserDialog 控件
#2
同上.
#3
System.Windows.Forms.FolderBrowserDialog folder =
new System.Windows.Forms.FolderBrowserDialog();
if ( folder.ShowDialog()== DialogResult.OK)
{
this.textBox1.Text = folder.SelectedPath;
}
new System.Windows.Forms.FolderBrowserDialog();
if ( folder.ShowDialog()== DialogResult.OK)
{
this.textBox1.Text = folder.SelectedPath;
}
#4
什么用呢```??我是菜鸟``哈哈```
给段源吧```谢啦````
给段源吧```谢啦````
#5
System.Windows.Forms.FolderBrowserDialog folder =
new System.Windows.Forms.FolderBrowserDialog();
if ( folder.ShowDialog()== DialogResult.OK)
{
this.textBox1.Text = folder.SelectedPath;
}
----
jinjazz(近身剪)
----------
已经写出来了
new System.Windows.Forms.FolderBrowserDialog();
if ( folder.ShowDialog()== DialogResult.OK)
{
this.textBox1.Text = folder.SelectedPath;
}
----
jinjazz(近身剪)
----------
已经写出来了
#6
//作用,得到所选择的目录的绝对路径
System.Windows.Forms.FolderBrowserDialog folder =
new System.Windows.Forms.FolderBrowserDialog();
if ( folder.ShowDialog()== DialogResult.OK)
{
this.textBox1.Text = folder.SelectedPath;
}
System.Windows.Forms.FolderBrowserDialog folder =
new System.Windows.Forms.FolderBrowserDialog();
if ( folder.ShowDialog()== DialogResult.OK)
{
this.textBox1.Text = folder.SelectedPath;
}
#7
那如果要在该对话显示时也在对话框中显示一个文本框而且内容是当前的路径能实现吗??
#8
那如果要在该对话显示时也在对话框中显示一个文本框而且内容是当前的路径能实现吗??
--------------
听不明白
--------------
听不明白
#9
那如果要在该对话显示时也在对话框中显示一个文本框而且内容是当前的路径能实现吗??
指定folderBrowserDialog1.RootFolder 属性就可以了
指定folderBrowserDialog1.RootFolder 属性就可以了
#10
那如果要在该对话显示时也在对话框中显示一个文本框而且内容是当前的路径能实现吗??
--------------------------
就是像 openFileDialog1一样``在打开对话框的时候按钮下面也有两个文本框,但我也想像它那样能够有一个文本框可以马上示我所选择的文件夹的路径```````````
--------------------------
就是像 openFileDialog1一样``在打开对话框的时候按钮下面也有两个文本框,但我也想像它那样能够有一个文本框可以马上示我所选择的文件夹的路径```````````
#11
谢谢1楼。。
#12
OpenFileDialog dialog = new OpenFileDialog();
if (dialog .ShowDialog() == DialogResult.OK)
{
txt_openpath.SelectedText = dialog.SafeFileName;
}
if (dialog .ShowDialog() == DialogResult.OK)
{
txt_openpath.SelectedText = dialog.SafeFileName;
}
#1
folderBrowserDialog 控件
#2
同上.
#3
System.Windows.Forms.FolderBrowserDialog folder =
new System.Windows.Forms.FolderBrowserDialog();
if ( folder.ShowDialog()== DialogResult.OK)
{
this.textBox1.Text = folder.SelectedPath;
}
new System.Windows.Forms.FolderBrowserDialog();
if ( folder.ShowDialog()== DialogResult.OK)
{
this.textBox1.Text = folder.SelectedPath;
}
#4
什么用呢```??我是菜鸟``哈哈```
给段源吧```谢啦````
给段源吧```谢啦````
#5
System.Windows.Forms.FolderBrowserDialog folder =
new System.Windows.Forms.FolderBrowserDialog();
if ( folder.ShowDialog()== DialogResult.OK)
{
this.textBox1.Text = folder.SelectedPath;
}
----
jinjazz(近身剪)
----------
已经写出来了
new System.Windows.Forms.FolderBrowserDialog();
if ( folder.ShowDialog()== DialogResult.OK)
{
this.textBox1.Text = folder.SelectedPath;
}
----
jinjazz(近身剪)
----------
已经写出来了
#6
//作用,得到所选择的目录的绝对路径
System.Windows.Forms.FolderBrowserDialog folder =
new System.Windows.Forms.FolderBrowserDialog();
if ( folder.ShowDialog()== DialogResult.OK)
{
this.textBox1.Text = folder.SelectedPath;
}
System.Windows.Forms.FolderBrowserDialog folder =
new System.Windows.Forms.FolderBrowserDialog();
if ( folder.ShowDialog()== DialogResult.OK)
{
this.textBox1.Text = folder.SelectedPath;
}
#7
那如果要在该对话显示时也在对话框中显示一个文本框而且内容是当前的路径能实现吗??
#8
那如果要在该对话显示时也在对话框中显示一个文本框而且内容是当前的路径能实现吗??
--------------
听不明白
--------------
听不明白
#9
那如果要在该对话显示时也在对话框中显示一个文本框而且内容是当前的路径能实现吗??
指定folderBrowserDialog1.RootFolder 属性就可以了
指定folderBrowserDialog1.RootFolder 属性就可以了
#10
那如果要在该对话显示时也在对话框中显示一个文本框而且内容是当前的路径能实现吗??
--------------------------
就是像 openFileDialog1一样``在打开对话框的时候按钮下面也有两个文本框,但我也想像它那样能够有一个文本框可以马上示我所选择的文件夹的路径```````````
--------------------------
就是像 openFileDialog1一样``在打开对话框的时候按钮下面也有两个文本框,但我也想像它那样能够有一个文本框可以马上示我所选择的文件夹的路径```````````
#11
谢谢1楼。。
#12
OpenFileDialog dialog = new OpenFileDialog();
if (dialog .ShowDialog() == DialogResult.OK)
{
txt_openpath.SelectedText = dialog.SafeFileName;
}
if (dialog .ShowDialog() == DialogResult.OK)
{
txt_openpath.SelectedText = dialog.SafeFileName;
}