Inheritance: System.Windows.Forms.Form
Ejemplo n.º 1
0
        private void ShowCreateShareForm(UncPathItem linkItem)
        {
            CreateShareForm form = new CreateShareForm();

            form.LocalPath = linkItem.RecordingPath;
            if (form.ShowDialog(this) == DialogResult.OK)
            {
                LoadUncPaths();
            }
        }
Ejemplo n.º 2
0
 private void ShowCreateShareForm(UncPathItem linkItem)
 {
     CreateShareForm form = new CreateShareForm();
       form.LocalPath = linkItem.RecordingPath;
       if (form.ShowDialog(this) == DialogResult.OK)
       {
     LoadUncPaths();
       }
 }