How can I get an OpenFileDialog in a custom control's property grid?

前端 未结 3 664
没有蜡笔的小新
没有蜡笔的小新 2021-02-04 11:17

I\'m creating a .net custom control and it should be able to load multiple text files. I have a public property named ListFiles with those properties set :


[Br         


        
3条回答
  •  感情败类
    2021-02-04 11:34

    You can use built-in UITypeEditor. It is called FileNameEditor

    [EditorAttribute(typeof(System.Windows.Forms.Design.FileNameEditor), typeof(System.Drawing.Design.UITypeEditor))]
    
    public string SomeFilePath
    {
     get;
     set;
    }
    

提交回复
热议问题