private async void SelectProjectFolder()
        {
            OpenFolderDialog ofd = new OpenFolderDialog();
            var result           = await ofd.ShowAsyncWithParent <NewProject>();

            if (result != null && result != "")
            {
                SelectedPath = result;
            }
        }
Beispiel #2
0
        private async void SetStandardPathOpen()
        {
            OpenFolderDialog ofd = new OpenFolderDialog {
                Directory = standardpath
            };
            var result = await ofd.ShowAsyncWithParent <SetStandardV>();

            if (result != null && !string.IsNullOrEmpty(result))
            {
                standardpath = result;
            }
        }