private void BrowseDestination()
        {
            var sfd = DialogsUtility.CreateFolderBrowser();

            sfd.ShowDialog();

            if (!string.IsNullOrEmpty(sfd.SelectedPath))
            {
                Destination = sfd.SelectedPath;
            }
        }
Ejemplo n.º 2
0
        private void BrowseForPath()
        {
            var fd = DialogsUtility.CreateFolderBrowser();

            fd.ShowDialog();

            if (!String.IsNullOrEmpty(fd.SelectedPath))
            {
                WorkspacePath = fd.SelectedPath;
            }
        }
Ejemplo n.º 3
0
        private void SelectDBFolder()
        {
            var dlg = DialogsUtility.CreateFolderBrowser();

            dlg.ShowDialog();

            if (dlg.SelectedPath != null)
            {
                DBFolder = dlg.SelectedPath;
            }
        }
        private void AddPath()
        {
            var sfd = DialogsUtility.CreateFolderBrowser();

            sfd.ShowDialog();

            if (string.IsNullOrEmpty(sfd.SelectedPath))
            {
                return;
            }

            AddPath(sfd.SelectedPath);
        }