Click here to Skip to main content
15,885,366 members
Articles / Programming Languages / C#

Pure C# .NET Desktop Color Picker With Magnifying Glass

Rate me:
Please Sign up or sign in to vote.
4.83/5 (27 votes)
2 Feb 20076 min read 121.3K   3.5K   80  
A desktop color picker with magnifying glass written in C# 2.0 without using APIs with DllImport or something else.
In this article, you will get a small user control for your own applications
using System;
using System.Windows.Forms;

namespace DesktopColorPicker
{
    static class Program
    {
        [STAThread]
        static void Main()
        {
            Application.EnableVisualStyles();
            Application.SetCompatibleTextRenderingDefault(false);
            Application.Run(new GUI());
        }
    }
}

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.


Written By
Web Developer
Germany Germany
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions