private void ButtonBrowseInstallDir_Click(object sender, RoutedEventArgs e)
        {
            var path = Dialogs.SelectFolder(this);

            if (!string.IsNullOrEmpty(path))
            {
                TextInstallDir.Text = path;
            }
        }
Esempio n. 2
0
 public string SelectFolder()
 {
     return(Invoke(() => Dialogs.SelectFolder(PlayniteWindows.CurrentWindow)));
 }