HomeWindowsColorPicker control for Windows Phone (Coding4Fun)

ColorPicker control for Windows Phone (Coding4Fun)

ColorPicker control is part of the Coding4Fun Toolkit for Windows Phone. You can easily add the color picker functionality to your Windows Phone App by downloading the Coding4Fun Toolkit for Windows Phone and using the ColorPicker control.

What is a ColorPicker?

ColorPicker is a control that displays the different colors and provides a slider kind of functionality for the user to pick the color from the control.

To add the ColorPicker control onto your Windows Phone App, follow the below steps

1. Download Coding4Fun Toolkit from CodePlex website.

2. Add the Coding4Fun controls to the toolbox by selecting the Coding4Fun.Phone.Controls.dll. This should list all the controls available in the Coding4Fun toolkit to your Visual Studio 2010 toolbox.

ColorPicker control for Windows Phone – Picture 1

3. Now, drag and drop the ColorPicker control to the Windows Phone Page.

Alternatively, you can also define the below namespace for the PhoneApplicationPage and reference the controls in your Page .

xmlns:my="clr-namespace:Coding4Fun.Phone.Controls;assembly=Coding4Fun.Phone.Controls"

You could add the control in the XAML page with the following tag

<my:ColorPicker HorizontalAlignment="Left" Margin="6,6,0,0" Name="colorPicker1" VerticalAlignment="Top" Height="532" Width="444" />

ColorPicker control for Windows Phone – Picture 2

The ColorPicker has an event “ColorChanged” which can be used to retrieve the new selected color (is selected) via the argument of type “Color”.

private void colorPicker1_ColorChanged(object sender, Color color)
{
     textBlock1.Text = color.ToString();
}

Leave a Reply

You May Also Like

This blog post will guide you through several effective methods to troubleshoot and resolve the issue of Microsoft Edge not...
Windows 11 offers a range of audio enhancements that can enrich your listening experience. These enhancements include features like virtual...
Windows 11 brings a fresh and visually stunning design to your desktop, and one of the standout features is the...