public void OnFolderPickerCommandExecute(object obj) { IFolderPicker view1 = _container.Resolve <FolderPickerView>(); int response = view1.ShowInputDialog(); if (response > 0) { View.SetPath(view1.Path); } }
public void OnFolderPickerCommandExecute(object obj) { IFolderPicker view1 = _container.Resolve <FolderPickerView>(); int response = view1.ShowInputDialog(); if (response > 0) { Properties.Settings.Default.ExportFolder = view1.Path; Properties.Settings.Default.Save(); View.SetPath(view1.Path); } }