Beispiel #1
0
        private void lkAddManully_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
        {
            NetpathInputForm ibf = new NetpathInputForm();

            ibf.ShowDialog();
            if (ibf.Confirmed)
            {
                lastSelectedFolder = Path.GetDirectoryName(ibf.NetPath);
                InputPath ip = new InputPath(ibf.NetPath);
                AddDistinctToListBox(ip);
            }
        }
Beispiel #2
0
        private void tiAddPathManually_Click(object sender, EventArgs e)
        {
            NetpathInputForm ibf = new NetpathInputForm();

            ibf.ShowDialog();
            if (ibf.Confirmed)
            {
                lastSelectedFolder = Path.GetDirectoryName(ibf.NetPath);
                InputPath ip = new InputPath(ibf.NetPath);
                AddDistinctToListBox(ip);
                pd.Save();
            }
        }