Ejemplo n.º 1
0
        public void mainTreeElementSelection(object sender, TreeViewEventArgs e)
        {
            string newWay = e.Node.FullPath.Replace("\\\\", "\\");

            fileWayTextBox.Text = newWay;
            SomeFunctions.GettingListDerictories(e.Node.FullPath, listView1);
        }
Ejemplo n.º 2
0
 private void TextBoxKey_UP(object sender, KeyEventArgs e)
 {
     if (e.KeyCode == Keys.Enter)
     {
         SomeFunctions.FileFinding(fileWayTextBox.Text, listView1, mainTree);
     }
 }