麦田

不积跬步无以至千里.

  博客园 :: 首页 :: 新随笔 :: 联系 :: 订阅 :: 管理 ::
OpenFileDialog fileDialog = new OpenFileDialog();
            fileDialog.Multiselect = true;
            fileDialog.Title = "请选择文件";
            fileDialog.Filter="所有文件(*.*)|*.*";
            if (fileDialog.ShowDialog() == DialogResult.OK)
            {
                string file=fileDialog.FileName;
                MessageBox.Show("已选择文件:" + file,"选择文件提示",MessageBoxButtons.OK,MessageBoxIcon.Information);
            }

 

posted on 2012-12-12 17:14  一些记录  阅读(202)  评论(0)    收藏  举报