Пример #1
0
        void OnShowGameFolderClicked(object sender, RoutedEventArgs e)
        {
            ValidateGameFolder();
            string sRootPath = CApplicationSettings.Instance.GetValue(ESettingsStrings.GameFolderPath).GetValueString();

            //folderTreeView.Items.Clear();

            FillTreeView(sRootPath);
            FileExplorer.BeginWatching(sRootPath);
        }
Пример #2
0
 void OnShowRootFolderClicked(object sender, RoutedEventArgs e)
 {
     ValidateRootPath();
     FillTreeView(CApplicationSettings.Instance.GetValue(ESettingsStrings.RootPath).GetValueString());
     FileExplorer.BeginWatching(CApplicationSettings.Instance.GetValue(ESettingsStrings.RootPath).GetValueString());
 }