private void BrowseButton_Click(object sender, RoutedEventArgs args) { string folderPath = ProjectPathHelper.GetFolderPath(StringTable.SelectProjectFolderDialogDescription, StringTable.SelectProjectFolderDialogDescriptionVista, this.ProjectPath); if (!string.IsNullOrEmpty(folderPath)) { this.ProjectPath = folderPath; } }
private void BrowseButton_Click(object sender, RoutedEventArgs args) { string folderPath = ProjectPathHelper.GetFolderPath("Select the location for your new project folder.", "Browse For Folder", this.ProjectPath); if (!string.IsNullOrEmpty(folderPath)) { this.ProjectPath = folderPath; } }
internal void BrowseButton_Click(object sender, RoutedEventArgs args) { string folderPath = ProjectPathHelper.GetFolderPath(this.browseDialogTitle, this.browseDialogTitleVista, this.NewPath); if (!string.IsNullOrEmpty(folderPath)) { this.NewPath = folderPath; } }