private void simpleButtonSelectPath_Click(object sender, EventArgs e){ FolderBrowserDialog fbd = new FolderBrowserDialog(); fbd.SelectedPath = "...
分类:
其他好文 时间:
2015-09-28 14:41:24
阅读次数:
132
1 private void btnChoosePath_Click(object sender, EventArgs e)2 {3 FolderBrowserDialog fbd = new FolderBrowserDialog();4 ...
1.选择文件FolderBrowserDialog fbd = new FolderBrowserDialog(); fbd.SelectedPath = "D:";//默认路径 if(fbd .ShowDialog() == DialogResult.O...
using System.IO;有一个数据库手机号码的txt文件,格式是 : 13500000000-13560000000-中国移动查询结果: 湖南移动[邵阳]文件夹选择对话框 FolderBrowserDialog;string[] Directory.GetFiles(路径,类型,选项) //...
分类:
移动开发 时间:
2014-12-01 15:38:46
阅读次数:
171
文件夹浏览时dialogresult要写全引用路径 1 string path=null; 2 FolderBrowserDialog fbd = new FolderBrowserDialog(); 3 fbd.Description = "请选择...
private void button_browse_Click(object sender, EventArgs e) { FolderBrowserDialog fbd = new FolderBrowserDialog(); fbd.D...
分类:
其他好文 时间:
2014-08-31 21:26:41
阅读次数:
199
创建浏览打开窗口的函数:1 function Read-FolderBrowserDialog([string]$InitialDirectory)2 {3 $app = New-Object -ComObject Shell.Application4 $folder = $app....
分类:
其他好文 时间:
2014-08-19 12:19:34
阅读次数:
175
public void GetPath(System.Windows.Controls.TextBox TB) { FolderBrowserDialog FBD = new FolderBrowserDialog(); FB...
分类:
其他好文 时间:
2014-08-14 19:59:19
阅读次数:
204
WPF,FolderBrowserDialog,文件夹选择对话框
分类:
其他好文 时间:
2014-07-21 09:28:01
阅读次数:
501
//读文件
private void readBtn_Click(object sender, EventArgs e)
{
try
{
if (pathTxt.Text == "")
{
MessageBox.S...