Search - Articles
DevASP.NET for ASP.NET, VB.NET, XML and C# (C-Sharp) Developers Tuesday, March 03, 2009
Dev Articles
Search Directory
ASP.NET
VB.Net
C-Sharp
SQL Server
 

FREE 12 month online training for ASP.NET & MS Expression Studio and a Free copy of MS Expression Web with Windows Server Purchase

Home >Search > Component & Controls > ASP.NET
Search:
What's New - What's Hot
Listings for Accounting Systems Accounting Systems (2)
Listings for Calendar Calendar (7)
Listings for Charts Charts (10)
Listings for Color Picker Color Picker (34)
Listings for Data List & View Data List & View (13)
Listings for DatePicker DatePicker (5)
Listings for Directory Directory (2)
Listings for File Management File Management (3)
Listings for Image gallery Image gallery (5)
Listings for Managment Tool Managment Tool (8)
Listings for Migration Migration (2)
More Categories for Mobile Web Application Mobile Web Application (5)
Listings for Server Controls Server Controls (23)
Listings for Shopping & Commerce Shopping & Commerce (6)
Listings for Site Navigation Site Navigation (6)
Listings for User Controls User Controls (32)
Listings for User Interface User Interface (18)
Listings for Web Reports Web Reports (4)


Adobe Eyedropper Control  Version: 0.00     Price: $0.00  
Total Hits: 27  |  Today: 0Author: Richard Blythe      Rating:  
Read Reviews | Write Review |  Your Rating: 

While there are a lot of articles about color pickers and dialogs, the eyedropper is rarely included. If it is included, it's usually hard wired into the color picker, making it difficult to drop into other projects. The current graphics application that I'm working on called for an eyedropper, so after some Googling and CodeProject research, I decided to create my own custom eyedropper control. I've called this Adobe Eyedropper control because the eyedropper image is actually screen copied from...

CustomControl: Colors ComboBox  Version: 0.00     Price: $0.00  
Total Hits: 28  |  Today: 0Author: zeltera      Rating:  
Read Reviews | Write Review |  Your Rating: 

This is a custom control, a useful, good alternative to standard ColorDialog from C# standard controls (dialogs). You can personalize the color list adding only the colors you want. The visual aspect, I hope, is professional.

Let's start!
I use Visual C# Express edition. Open a new C# project (Windows application). Right click on properties window and chose "Add new Item" from the menu that appears....

An HSV/RGBA colour picker  Version: 0.00     Price: $0.00  
Total Hits: 30  |  Today: 0Author: nico80      Rating:  
Read Reviews | Write Review |  Your Rating: 

This colour picker allows you to easily choose a colour either using RGB or HSV, it includes an alpha slider (that can be disabled or hidden, if needed), and it displays the colour value in hexadecimal. The code is fully written using Windows API, without MFC....

Creating a Gradient Color Map  Version: 0.00     Price: $0.00  
Total Hits: 29  |  Today: 0Author: LimitedAtonement      Rating:  
Read Reviews | Write Review |  Your Rating: 

The Paint_Scale_Three_Colors component intends to provide developers with an easy way to lookup colors linearly interpolated between three colors, with an option to make sure that the middle color hits zero. Given a range of data-values (of type Single), the paint-scale assigns a low color, middle color, and high color such that, when given another value in that range, the paint_scale returns a color appropriately weighted, given the high value, the low value, and the value you've given....

XColorPickerXP - an MFC color picker control with themed look  Version: 0.00     Price: $0.00  
Total Hits: 24  |  Today: 0Author: Hans Dietrich      Rating:  
Read Reviews | Write Review |  Your Rating: 

For many years I have been using my XColourPicker control, which I based on Chris Maunder's excellent color picker control. Recently my project manager asked me why I wasn't using a control with a modern look. That's when I realized that my control still had the flat Windows 2000 look, even when used in a themed app:...

My Version of the Ubiquitous Color Picker  Version: 0.00     Price: $0.00  
Total Hits: 28  |  Today: 0Author: Donald Wingate      Rating:  
Read Reviews | Write Review |  Your Rating: 

I began this project with a desire to build a color picker which met three requirements:

a large display area for showing the current color,
ability to adjust each component of both the HSV and RGB color models independently, and
make the relationships between the various color components clear and intuitive so that when you adjust one, you know ahead of time what the effect will be.

I specifically wanted to get away from the color "swatch" that is so common....

ColorFinder - Retrieve the color of any pixel on the Desktop  Version: 0.00     Price: $0.00  
Total Hits: 28  |  Today: 0Author: abhinaba      Rating:  
Read Reviews | Write Review |  Your Rating: 

When developing web-pages or graphics we frequently need a tool that will give us the RGB value of the color of a particular region in some other application's window. An example could be that you need to know the background color of a JPG image so that you can use the same color for the background of the webpage on which you will display the image. ColorFinder comes in handy exactly for this. You can use this tool to pick color from any pixel on the desktop....

CColourPickerXP - a Theme-aware Colour Picker with 2 Styles.  Version: 0.00     Price: $0.00  
Total Hits: 29  |  Today: 0Author: Zorglab      Rating:  
Read Reviews | Write Review |  Your Rating: 

Recently, I needed a colour picker for a project. I found three articles on CodeProject on which I based my own control :

Office 97 style Colour Picker control
A color picker button
Color Picker for WTL with XP themes...

ColorPicker - ColorPicker with a compact footprint (VB.NET)  Version: 0.00     Price: $0.00  
Total Hits: 27  |  Today: 0Author: SSDiver2112      Rating:  
Read Reviews | Write Review |  Your Rating: 

A color picker... isn't there a bunch of those out there already? Yeah, but not really what I needed. There are some cool ones out there, but they were either too big, or too limited. Besides, I enjoy the challenge. What I wanted was to be able to easily select a color from a color gradient bar and adjust the brightness and saturation (HSB). Again, already out there, but I wanted a smaller footprint. I didn't want the control taking up most of my form area, and I didn't want to have to open a se...

Office 97 style Colour Picker control  Version: 0.00     Price: $0.00  
Total Hits: 28  |  Today: 0Author: Chris Maunder      Rating:  
Read Reviews | Write Review |  Your Rating: 

In an effort to have the latest and greatest wizz-bang features in my programs I unashamedly ripped of the colour picker from Office 97.

Initially I tried to modify an owner drawn combo box and combine that with a multicolumn combobox, but current multicolumn combo boxes are really just a single column with dividing lines drawn in. I then decided to write the whole thing from scratch based on a button, since it would at least give me a BN_CLICKED notification to get things started....

WPF Color Picker Like Office 2007  Version: 0.00     Price: $0.00  
Total Hits: 29  |  Today: 0Author: Saraf Uddin Talukder |      Rating:  
Read Reviews | Write Review |  Your Rating: 

Recently, I was working on a WPF application which required a color picker for setting colors of various graph elements within the application. At first, this seemed like a five minute task for me as I was quite confident that I would get one for free on the internet. I was quite right until I was told that it should have a look and feel like that of Office 2007 color picker. Thus I built my own and here it is....

XColorHexagonCtrl - a non-MFC color picker control that displays a color hexagon  Version: 0.00     Price: $0.00  
Total Hits: 27  |  Today: 0Author: Hans Dietrich      Rating:  
Read Reviews | Write Review |  Your Rating: 

Visually the XColorHexagonCtrl control has two separate areas of user interaction, a large hexagon comprised of many smaller hexagon cells, each displaying a different color; and underneath that, grayscale hexagon cells that include a large white and a large black cell. In actual use, both areas function the same, with only one noticeable difference, concerning the behavior of the two cells filled with the color white (#FFFFFF). When the small white cell is clicked, the large white cell is also ...

XColorSpectrumCtrl - a non-MFC color picker control that displays a color spectrum  Version: 0.00     Price: $0.00  
Total Hits: 9  |  Today: 0Author: Hans Dietrich      Rating:  
Read Reviews | Write Review |  Your Rating: 

This is companion article to my XColorHexagonCtrl article, but you need not read that article to make use of this control....

XColorDialog - an MFC color picker control that displays a color hexagon and a color spectrum  Version: 0.00     Price: $0.00  
Total Hits: 7  |  Today: 0Author: Hans Dietrich      Rating:  
Read Reviews | Write Review |  Your Rating: 

XColorDialog has the same visual appearance as the two screenshots above, and offers an API that is similar to CColorDialog, but without support for the multiple custom colors that you see here:...

EmrColorComboBox  Version: 0.00     Price: $0.00  
Total Hits: 10  |  Today: 0Author: Ampiroid      Rating:  
Read Reviews | Write Review |  Your Rating: 

Every Windows programmer and user knows color chooser controls and dialogs. Surely you see several types of them in several programs. One type of these controls could be a Color Combo Box. I need a color chooser combo box control in one of my projects, to easily select color. Because I couldn't find a suitable one; the best way was to create it myself....

Cascading Dropdonlist in ASP.NET  Version: 0.00     Price: $0.00  
Total Hits: 12  |  Today: 0Author: Avinash Desai      Rating:  
Read Reviews | Write Review |  Your Rating: 

This is the code for Cascading dropdown list which helps to know how the dropdownlists are cascaded and how the code written and helps to know adding the items to the dropdown list from the database....

DataGridViewColourPicker  Version: 0.00     Price: $0.00  
Total Hits: 7  |  Today: 0Author: Arash Javadi      Rating:  
Read Reviews | Write Review |  Your Rating: 

This is one of a series of datagridviewcolumn articles that I developed over the years. Now I want to share them all on CodeProject. Hope you like it....

MS Office Style Color Picker Dialog  Version: 0.00     Price: $0.00  
Total Hits: 7  |  Today: 0Author: Johannes Wallroth      Rating:  
Read Reviews | Write Review |  Your Rating: 

For a project I'm working on I needed something more stylish than the standard color dialog which comes with .NET, so I decided to make a color picker dialog of my own. I used the one found at Microsoft Office (for choosing the font color) as a souce of inspiration (in fact, I shamelessly copied it) - I used exactly the same palette of 40 colors and the same "look and feel" - only the size and distance of the little color panels is a little different in my version....

ASP.NET Color DropDown Control  Version: 0.00     Price: $0.00  
Total Hits: 13  |  Today: 0Author: Mike Ellison      Rating:  
Read Reviews | Write Review |  Your Rating: 

When developing controls for a designer environment like Visual Studio or WebMatrix, the complexities of persisting control properties as serialized HTML can come into play. In many cases, the built-in serialization of control properties as attributes or nested child tags is sufficient. There are also several code attributes available to a control developer to apply a degree of customization for this process. In some cases however, a developer requires a greater degree of control over how contro...

A Color Scroll for XNA  Version: 0.00     Price: $0.00  
Total Hits: 11  |  Today: 0Author: Charles Petzold      Rating:  
Read Reviews | Write Review |  Your Rating: 

One of the first Windows programs I wrote for publication was called COLORSCR (“color scroll”), and it appeared in the May 1987 issue of Microsoft Systems Journal, the predecessor to this magazine....



Disclaimer - Privacy
© 2002-2012 DevASP.net