Click here to Skip to main content
15,892,839 members
Articles / Programming Languages / C#

Visual Studio Cleaner and More

Rate me:
Please Sign up or sign in to vote.
4.86/5 (17 votes)
18 Dec 2011CPOL7 min read 61.6K   2.4K   55  
Delete junk files from Visual Studio solution/project by selecting files using search patterns
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;

namespace VStudioCleaner_ns
{
    public partial class ColorDlg : Form
    {
        public ColorDlg()
        {
            InitializeComponent();
        }

        private void acceptBtn_Click(object sender, EventArgs e)
        {
            this.Close();
        }

        private void cancelBtn_Click(object sender, EventArgs e)
        {
            this.Close();
        }

        private void fgColorBtn_Click(object sender, EventArgs e)
        {
            colorDialog.Color = fgColorBtn.BackColor;
            if (colorDialog.ShowDialog() == DialogResult.OK)
            {
                fgColorBtn.BackColor = colorDialog.Color;
            }
        }

        private void bgColorBtn_Click_1(object sender, EventArgs e)
        {
            colorDialog.Color = bgColorBtn.BackColor;
            if (colorDialog.ShowDialog() == DialogResult.OK)
            {
                bgColorBtn.BackColor = colorDialog.Color;
            }
        }

        public Color FgColor
        {
            get { return fgColorBtn.BackColor; }
            set { fgColorBtn.BackColor = value; }
        }

        public Color BgColor
        {
            get { return bgColorBtn.BackColor; }
            set { bgColorBtn.BackColor = value; }
        }

    }
}

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
Software Developer (Senior) IBM / WSI
United States United States
I love C/C++ for its speed and power and C#/Visual Studio for quick application development.

Unix/Linux is my favorite OS

Android Studio is the best IDE I have used.

Comments and Discussions