Click here to Skip to main content
15,896,063 members
Articles / Programming Languages / C#

Project Tool

Rate me:
Please Sign up or sign in to vote.
4.69/5 (10 votes)
23 Sep 2007CPOL3 min read 54.6K   1.7K   73  
Backup your C# solution and projects for archive or source code sharing. Temporary or unused files are excluded.
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Drawing;
using System.Data;
using System.Text;
using System.Windows.Forms;
using System.IO;

namespace QiHe.CodeLib
{
    public partial class FolderBrowser : UserControl
    {
        public FolderBrowser()
        {
            InitializeComponent();
        }

        public string Caption
        {
            get { return labelCaption.Text; }
            set { labelCaption.Text = value; }
        }

        public string ButtonText
        {
            get { return buttonBrowse.Text; }
            set { buttonBrowse.Text = value; }
        }

        public bool ReadOnly
        {
            get { return textBoxFolderPath.ReadOnly; }
            set
            {
                textBoxFolderPath.ReadOnly = value;
                folderBrowserDialog.ShowNewFolderButton = !value;
            }
        }

        public string FolderPath
        {
            get { return textBoxFolderPath.Text; }
            set
            {
                textBoxFolderPath.Text = value;
            }
        }

        private void buttonBrowse_Click(object sender, EventArgs e)
        {
            if (Directory.Exists(FolderPath))
            {
                folderBrowserDialog.SelectedPath = FolderPath;
            }
            if (folderBrowserDialog.ShowDialog() == DialogResult.OK)
            {
                FolderPath = folderBrowserDialog.SelectedPath;
            }
        }

        private void FolderBrowser_Layout(object sender, LayoutEventArgs e)
        {
            textBoxFolderPath.Left = labelCaption.Right;
            buttonBrowse.Left = this.Width - buttonBrowse.Width - 2;
            int width = buttonBrowse.Left - labelCaption.Right - 2;
            textBoxFolderPath.Width = width > 0 ? width : 0;
        }

        public event EventHandler FolderPathChanged;

        private void textBoxFolderPath_TextChanged(object sender, EventArgs e)
        {
            if (FolderPathChanged != null)
            {
                FolderPathChanged(sender, e);
            }
        }
    }
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Architect YunCheDa Hangzhou
China China
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions