gong-shell icon indicating copy to clipboard operation
gong-shell copied to clipboard

Open Shell Item

Open eldonfsr opened this issue 7 years ago • 0 comments

I have small test i wanna is going in shell item got from network, I have 10 pc in localnet i can see them on shellview but i wanna use for loop to going one by one, and open it.

foreach( ShellItem it in shellView1.CurrentFolder) { if (it.IsFolder) { // string folder = it.ParsingName.ToString();

                string folder = it.DisplayName;
                ShellItem item = shellView1.FindItemWithText(folder);
                shellView1.Select(item);
               //  here i wanna to assing the new folder open it.
                shellView1.Refresh();
                shellView1.RefreshContents();

                this.Refresh();                   
                break;
            }

        }

please help me..

eldonfsr avatar Aug 01 '17 00:08 eldonfsr