• ASP.NET] 选择文件夹的对话框


    using System.Windows.Forms.Design;
    using System.Windows.Forms;

    namespace TMS_WEB.Common
    {
      public class FolderDialog : FolderNameEditor
        {
            FolderNameEditor.FolderBrowser fDialog = new System.Windows.Forms.Design.FolderNameEditor.FolderBrowser();
            public FolderDialog()
            {
            }
            public DialogResult DisplayDialog()
            {
                return DisplayDialog("请选择一个文件夹");
            }
           
            public DialogResult DisplayDialog(string description)
            {
                fDialog.Description = description;
                return fDialog.ShowDialog();
            }
            public string Path
            {
                get
                {
                    return fDialog.DirectoryPath;
                }
            }

      ~FolderDialog()
            {
                fDialog.Dispose();
            }
        }
    }

    添加:System.Windows.Forms.Design;
    System.Windows.Forms;

    FolderDialog f = new FolderDialog();
       f.DisplayDialog();

  • 相关阅读:
    学习笔记——SQL SERVER2014内存数据库
    学习笔记——WCF
    线程
    文件内容操作类-RandomAccessFile
    文件操作类-file-创建文件夹
    同步方法解决同步问题
    同步代码块
    停止线程
    使用泛型来优化坐标类
    数据操作流-DataOutputStream
  • 原文地址:https://www.cnblogs.com/zengwei/p/2126331.html
Copyright © 2020-2023  润新知