Exemplo n.º 1
0
        public void OnFolderPickerCommandExecute(object obj)
        {
            IFolderPicker view1    = _container.Resolve <FolderPickerView>();
            int           response = view1.ShowInputDialog();

            if (response > 0)
            {
                View.SetPath(view1.Path);
            }
        }
Exemplo n.º 2
0
        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);
            }
        }