I am creating a custom .net element and it should be able to upload multiple text files. I have a public ListLiles property with these properties:
[Browsable(true), Category("Configuration"), Description("List of Files to Load")] public string ListFiles { get { return m_oList; } set { m_oList = value; } }
Depending on the type of object (line, line [], list, ...) the property grid allows the user to enter some data. My goal would be to have a filtered openfiledialog of my component in the property grid that allows the user to select multiple files and return them as an array or string (or something else ...).
Sooo ... Here is my question: How can I get OpenFileDialog in a custom control property grid?
Thank you so much!
karlipoppins
source share