public void OnClickBrowseDestination()
        {
            FolderBrowserDialog dialog = new FolderBrowserDialog();

            if (dialog.ShowDialog() == DialogResult.OK)
            {
                m_modelFolderCreator.SetPathOfDirectory(dialog.SelectedPath);

                m_mainWnd.SetPathOfDirectory(dialog.SelectedPath);

                m_mainWnd.SetListViewPreview(m_modelFolderCreator.ListOfModelDirectory);
            }
        }